The Configuration class is a user space object. It is a used to get configuration information for a CAD file. More...
Public Member Functions | |
override void | Dispose () |
Configuration () | |
The default constructor creates an empty Configuration object. More... | |
Configuration (string in_name) | |
This constructor creates a Configuration with the given name and no subconfigurations. More... | |
Configuration (string in_name, HPS.Exchange.Configuration[] in_subconfigurations) | |
This constructor creates a Configuration with the given name and the given subconfigurations More... | |
Configuration (HPS.Exchange.Configuration in_configuration) | |
The copy constructor creates a new Configuration object that contains the same settings as the source Configuration. More... | |
override HPS.Type | ObjectType () |
This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object. More... | |
void | Set (HPS.Exchange.Configuration in_kit) |
Copies the source Configuration into this Configuration. More... | |
void | Show (out HPS.Exchange.Configuration out_kit) |
Copies this Configuration into the given Configuration. More... | |
override bool | Empty () |
Indicates whether this Configuration has any values set on it. More... | |
override bool | Equals (System.Object obj) |
override int | GetHashCode () |
bool | Equals (HPS.Exchange.Configuration in_kit) |
Check if the source Configuration is equivalent to this Configuration. More... | |
string | GetName () |
Gets the name for this Configuration. More... | |
HPS.Exchange.Configuration[] | GetSubconfigurations () |
Gets the subconfigurations for this Configuration. More... | |
![]() | |
Sprocket (HPS.Sprocket in_that) | |
![]() | |
IntPtr | GetClassID () |
Object (HPS.Object that) | |
HPS.Type | Type () |
This function returns the true type of the underlying object. This function is useful for finding the type of smart pointer objects that have been cast to more generic types. More... | |
virtual void | Reset () |
Resets this object to its initial, uninitialized state. More... | |
bool | HasType (HPS.Type in_mask) |
This function indicates whether this Object has the given Type mask. More... | |
IntPtr | GetInstanceID () |
Returns an identifier that can be used to identify which instance of a class an object is. Different keys and controls will return the same value if they are backed by the same database resource. More... | |
Static Public Member Functions | |
static bool | operator== (HPS.Exchange.Configuration a, HPS.Exchange.Configuration b) |
static bool | operator!= (HPS.Exchange.Configuration a, HPS.Exchange.Configuration b) |
![]() | |
static IntPtr | ClassID< T > () |
Protected Member Functions | |
override void | deleteCptr () |
![]() | |
virtual IntPtr | GetNonDirectorClassID () |
Additional Inherited Members | |
![]() | |
enum | UpdateType { Synchronous = 0, Asynchronous = 1 } |
The type of update to perform, either synchronous or asynchronous. More... | |
![]() | |
HandleRef | cptr |
HandleRef | scptr |
bool | cMemOwn |
The Configuration class is a user space object. It is a used to get configuration information for a CAD file.
|
inline |
The default constructor creates an empty Configuration object.
|
inline |
This constructor creates a Configuration with the given name and no subconfigurations.
in_name | UTF8-encoded string with the name for this Configuration. |
|
inline |
This constructor creates a Configuration with the given name and the given subconfigurations
in_name | UTF8-encoded string with the name for this Configuration. |
in_subconfigurations | The subconfigurations for this Configuration. |
|
inline |
The copy constructor creates a new Configuration object that contains the same settings as the source Configuration.
in_configuration | The source Configuration to copy. |
|
inlinevirtual |
Indicates whether this Configuration has any values set on it.
Reimplemented from HPS.Object.
|
inline |
Check if the source Configuration is equivalent to this Configuration.
in_kit | The source Configuration to compare to this Configuration. |
|
inline |
Gets the name for this Configuration.
|
inline |
Gets the subconfigurations for this Configuration.
|
inlinevirtual |
This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.
Reimplemented from HPS.Object.
|
inline |
Copies the source Configuration into this Configuration.
in_kit | The source Configuration to copy. |
|
inline |
Copies this Configuration into the given Configuration.
out_kit | The Configuration to populate with the contents of this Configuration. |