CFx SDK Documentation 2024 SP0
|
#include <TfObject.h>
Public Member Functions | |
virtual OdTfClass * | owner () const =0 |
virtual OdTfVariant::Type | type () const =0 |
virtual const OdString & | name () const =0 |
virtual OdTfAttributesContainerPtr | attributes () const =0 |
virtual OdTfVariant | defaultItemValue () const =0 |
virtual OdResult | getValue (const OdTfObject *pObject, OdTfVariant &value) const =0 |
virtual OdResult | setValue (OdTfObject *pObject, const OdTfVariant &value) const =0 |
Public Member Functions inherited from OdRxObject | |
ODRX_HEAP_OPERATORS () | |
OdRxObject () | |
virtual | ~OdRxObject () |
virtual OdRxObject * | queryX (const OdRxClass *pClass) const |
virtual OdRxObject * | x (const OdRxClass *pClass) const |
virtual OdRxClass * | isA () const |
virtual void | addRef ()=0 |
virtual void | release ()=0 |
virtual long | numRefs () const |
bool | isKindOf (const OdRxClass *pClass) const |
virtual OdRxObjectPtr | clone () const |
virtual void | copyFrom (const OdRxObject *pSource) |
virtual OdRx::Ordering | comparedTo (const OdRxObject *pOther) const |
virtual bool | isEqualTo (const OdRxObject *pOther) const |
Additional Inherited Members | |
Static Public Member Functions inherited from OdRxObject | |
static OdRxObjectPtr | cast (const OdRxObject *pointer) |
static OdRxClass * | desc () |
An abstract interface class that provides functionality for storing property data. A property is defined with its name, data type, value and a set of property attributes. Corresponding C++ library: Od_Tf <group OdTf_Classes>
Definition at line 314 of file TfObject.h.
|
pure virtual |
Retrieves the property attributes.
|
pure virtual |
Retrieves the current default value for the property.
|
pure virtual |
Retrieves the current value of the property.
pObject | [in] A pointer to an object that encapsulates the property. |
value | [out] A placeholder for the value. |
|
pure virtual |
Retrieves the property name.
|
pure virtual |
Retrieves the owner class information for the property.
|
pure virtual |
Sets a new value of the property.
pObject | [in] A pointer to an object that encapsulates the property. |
value | [out] A new value to be set. |
|
pure virtual |
Retrieves the property data type.