|
GLG Toolkit, C / C++ API Library
Version 4.6
|
This group contains methods used to load, set up and display a GLG drawing. More...
This group contains methods used to load, set up and display a GLG drawing.
Functions | |
| GlgObjectC (GlgObject object) | |
| Constructor: Creates a C++ class from GlgObject. More... | |
| GlgObjectC (void) | |
| Default constructor: Creates a null object. More... | |
| virtual | ~GlgObjectC (void) |
| Destructor: Destroys an instance of GlgObjectC and dereferences the GlgObject object it contains. More... | |
| void | Drop (void) |
| Explicitly dereferences the GLG object contained in this instance. More... | |
| GlgObject | GetGlgObject (void) |
| Returns an object ID of the stored GlgObject object. More... | |
| GlgBoolean | IsNull (void) |
| Checks if a non-null object is stored in this instance. More... | |
| operator GlgObject (void) | |
| Type converter to GlgObject. More... | |
| GlgBoolean | operator! (void) |
| Checks if a non-null object is stored in this instance. More... | |
| GlgObjectC & | operator++ (int) |
| Postfix operator: References an object. More... | |
| GlgObjectC & | operator++ (void) |
| Prefix operator: References an object. More... | |
| GlgObjectC & | operator-- (int) |
| Postfix operator: Dereferences an object. More... | |
| GlgObjectC & | operator-- (void) |
| Prefix operator: Dereferences an object. More... | |
| GlgObjectC & | operator= (const GlgObjectC &object) |
| Assignment operator: Stores a GLG object in this instance. More... | |
| void | Reference (void) |
| Explicitly references the GLG object contained in this instance. More... | |
| GlgBoolean | Same (GlgObject object) |
| Compares two GLG objects. More... | |
| GlgBoolean | Same (GlgObjectC &object) |
| Compares two GLG objects. More... | |
| void | SetGlgObject (GlgObject object) |
| Low-level utility: Stores the specified GlgObject object in this object and references the stored object. More... | |
| GlgObjectC | ( | GlgObject | object | ) |
Constructor: Creates a C++ class from GlgObject.
This constructor makes it possible to assign GlgObject to a GlgObjectC object class:
| GlgObjectC | ( | void | ) |
Default constructor: Creates a null object.
|
virtual |
Destructor: Destroys an instance of GlgObjectC and dereferences the GlgObject object it contains.
| void Drop | ( | void | ) |
Explicitly dereferences the GLG object contained in this instance.
This is a wrapper for GlgDropObject.
| GlgObject GetGlgObject | ( | void | ) |
Returns an object ID of the stored GlgObject object.
| GlgBoolean IsNull | ( | void | ) |
Checks if a non-null object is stored in this instance.
| operator GlgObject | ( | void | ) |
Type converter to GlgObject.
This type converter allows using C++ GlgObjectC object instances as the GlgObject parameters of the C API functions.
| GlgBoolean operator! | ( | void | ) |
Checks if a non-null object is stored in this instance.
| GlgObjectC& operator++ | ( | int | ) |
Postfix operator: References an object.
This is a wrapper for GlgReferenceObject.
| GlgObjectC& operator++ | ( | void | ) |
Prefix operator: References an object.
This is a wrapper for GlgReferenceObject.
| GlgObjectC& operator-- | ( | int | ) |
Postfix operator: Dereferences an object.
This is a wrapper for GlgDropObject.
| GlgObjectC& operator-- | ( | void | ) |
Prefix operator: Dereferences an object.
This is a wrapper for GlgDropObject.
| GlgObjectC& operator= | ( | const GlgObjectC & | object | ) |
Assignment operator: Stores a GLG object in this instance.
| object | The object to store. |
| void Reference | ( | void | ) |
Explicitly references the GLG object contained in this instance.
This is a wrapper for GlgReferenceObject.
| GlgBoolean Same | ( | GlgObject | object | ) |
Compares two GLG objects.
| object | The object to compare with. |
| GlgBoolean Same | ( | GlgObjectC & | object | ) |
Compares two GLG objects.
| object | The object to compare with. |
| void SetGlgObject | ( | GlgObject | object | ) |
Low-level utility: Stores the specified GlgObject object in this object and references the stored object.
| object | The object to store. |