/MEng/Object

ClassPath:MEng.Object
Parent ClassPath:Not Applicable
Copyable:Yes
Final:No

MEng.Object is the most fundamental class in the macro language. Everything else derives from MEng.Object, and therefore MEng.Object is the only class that doesn't have a parent class. You would never create an object of this type directly, since it does nothing useful itself. It just provides the common base class for the whole class hierarchy. Since both copyable and non-copyable classes will derive from it, it itself must be copyable.

 

Constructors:

Constructor();

This is the only constructor for this class. It takes no parameters and, like all constructors, returns no value. It is just there to allow all of the classes that derive from it to make a default call to their parent constructor.