maxon.ObjectInterface¶
Description¶
Object is the root of the interface hierarchy of the MAXON API.
As a C++ class, each virtual interface is directly derived from Object,
but as an interface a virtual interface may have an arbitrary number of base interfaces,
all of which have Object as direct or indirect base interface.
The interface hierarchy is reflected by the Ptr, ConstPtr and reference classes of the interfaces:
They have conversion operators to all base interfaces, and they contain functions for all methods
of the interface and its base interfaces.
Object provides some general inheritance-related functions such as GetClass()
and IsInstanceOf(), data-related functions such as Clone() and CopyFrom(),
and virtual methods such as ToString() which are required for each Object.
All Object instances are reference-counted.
Within the declaration of an interface you may choose the reference behaviour on invocation
of a non-const method (normal, const, copy-on-write).
Inheritance diagram¶
Inheritance
Children Classes:
maxon.UnitTestInterface
maxon.ParametricTypeInterface
Methods Signature¶
Retrieves the HashCode of the implementation of an Interface. |
|
|
Creates and stores internally the reference of the C++ Data.
|
Methods Definition¶
-
ObjectInterface.
GetHashCodeImpl
()¶ Retrieves the HashCode of the implementation of an Interface.
- Returns
The implementation hashcode.
- Return type
int
-
ObjectInterface.
__init__
(data=None)¶ - Creates and stores internally the reference of the C++ Data.When the passed data is None, an empty data is still allocated.
- Parameters
data (Optional[Data]) – An optional c++ data used to hold the C++ reference alive during the whole lifetime of this python object.