CFx SDK Documentation 2024 SP0
|
#include <TfObject.h>
Public Types | |
typedef OdInt32 | size_type |
Public Member Functions | |
virtual OdTfClass * | owner () const =0 |
virtual size_type | size () const =0 |
virtual bool | contains (const OdTfProperty *pProp) const =0 |
virtual const OdTfProperty * | find (size_type index) const =0 |
virtual const OdTfProperty * | find (const OdString &name) const =0 |
virtual const OdTfProperty * | find (const OdString &name, const OdTfVariant::Type type) const =0 |
virtual size_type | index (const OdTfProperty *pProp) const =0 |
virtual bool | unique (const OdString &name) const =0 |
virtual bool | unique (const OdString &name, const OdTfVariant::Type type) const =0 |
virtual OdRxIteratorPtr | iterator () 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 implements storage for a set of properties and provides additional functionality: Searching for a property by its index or name Checking property uniqueness Sequential access to properties using an iterator object <group OdTf_Classes>
Definition at line 159 of file TfObject.h.
A data type that represents a size of properties in bytes. <group OdTf_Types>
Definition at line 169 of file TfObject.h.
|
pure virtual |
Retrieves whether the container contains a specified property.
pProp | [in] A pointer to a property object to search for. |
|
pure virtual |
Searches for a property in the container by its name.
name | [in] A name of the property to be found. |
|
pure virtual |
Searches for a property in the container by its name and data type.
name | [in] A name of the property to be found. |
type | [in] A data type of the property to be found. |
|
pure virtual |
Searches for a property in the container by its index, which specifies the property's position in the container.
index | [in] An index of the property to be found. |
|
pure virtual |
Retrieves the index value for a specified property. The index value determines the position of the property in the container.
pProp | [in] A pointer to a property object. |
|
pure virtual |
Retrieves the properties container iterator object that provides sequential access to properties in the container.
|
pure virtual |
Retrieves the object that is the owner of the properties container.
|
pure virtual |
Retrieves the size of the properties container.
|
pure virtual |
Retrieves the uniqueness flag value for a property specified with its name. The uniqueness flag value is equal to true if the property object is unique in the container; otherwise the flag value is equal to false.
pProp | [in] A property object's name. |
|
pure virtual |
Retrieves the uniqueness flag value for a property specified with its name and data type. The uniqueness flag value is equal to true if the property object is unique in the container; otherwise the flag value is equal to false.
pProp | [in] A property object's name. |
type | [in] A property object's data type. |