Open CASCADE Technology
7.0.0
|
A root object extracted from a Storage_Data object. A Storage_Root encapsulates a persistent object which is a root of a Storage_Data object. It contains additional information: the name and the data type of the persistent object. When retrieving a Storage_Data object from a container (for example, a file) you access its roots with the function Roots which returns a sequence of root objects. The provided functions allow you to request information about each root of the sequence. You do not create explicit roots: when inserting data in a Storage_Data object, you just provide the persistent object and optionally its name to the function AddRoot. More...
#include <Storage_Root.hxx>
Public Member Functions | |
Storage_Root () | |
Storage_Root (const TCollection_AsciiString &theName, const Handle< Standard_Persistent > &theObject) | |
Storage_Root (const TCollection_AsciiString &theName, const Standard_Integer theRef, const TCollection_AsciiString &theType) | |
void | SetName (const TCollection_AsciiString &theName) |
TCollection_AsciiString | Name () const |
Returns the name of this root object. The name may have been given explicitly when the root was inserted into the Storage_Data object. If not, the name is a reference number which was assigned automatically by the driver when writing the set of data into the container. When naming the roots, it is easier to retrieve objects by significant references rather than by references without any semantic values. Warning The returned string will be empty if you call this function before having named this root object, either explicitly, or when writing the set of data into the container. More... | |
void | SetObject (const Handle< Standard_Persistent > &anObject) |
Handle< Standard_Persistent > | Object () const |
Returns the persistent object encapsulated by this root. More... | |
TCollection_AsciiString | Type () const |
Returns the name of this root type. More... | |
void | SetReference (const Standard_Integer aRef) |
Standard_Integer | Reference () const |
void | SetType (const TCollection_AsciiString &aType) |
Public Member Functions inherited from MMgt_TShared | |
virtual void | Delete () const override |
Memory deallocator for transient classes. More... | |
Public Member Functions inherited from Standard_Transient | |
Standard_Transient () | |
Empty constructor. More... | |
Standard_Transient (const Standard_Transient &) | |
Copy constructor – does nothing. More... | |
Standard_Transient & | operator= (const Standard_Transient &) |
Assignment operator, needed to avoid copying reference counter. More... | |
virtual | ~Standard_Transient () |
Destructor must be virtual. More... | |
virtual const opencascade::handle< Standard_Type > & | DynamicType () const |
Returns a type descriptor about this object. More... | |
Standard_Boolean | IsInstance (const opencascade::handle< Standard_Type > &theType) const |
Returns a true value if this is an instance of Type. More... | |
Standard_Boolean | IsInstance (const Standard_CString theTypeName) const |
Returns a true value if this is an instance of TypeName. More... | |
Standard_Boolean | IsKind (const opencascade::handle< Standard_Type > &theType) const |
Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism. More... | |
Standard_Boolean | IsKind (const Standard_CString theTypeName) const |
Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism. More... | |
Standard_Transient * | This () const |
Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero. More... | |
Standard_Integer | GetRefCount () const |
Get the reference counter of this object. More... | |
void | IncrementRefCounter () const |
Increments the reference counter of this object. More... | |
Standard_Integer | DecrementRefCounter () const |
Decrements the reference counter of this object; returns the decremented value. More... | |
Additional Inherited Members | |
Public Types inherited from Standard_Transient | |
typedef void | base_type |
Returns a type descriptor about this object. More... | |
Static Public Member Functions inherited from Standard_Transient | |
static const char * | get_type_name () |
Returns a type descriptor about this object. More... | |
static const opencascade::handle< Standard_Type > & | get_type_descriptor () |
Returns type descriptor of Standard_Transient class. More... | |
A root object extracted from a Storage_Data object. A Storage_Root encapsulates a persistent object which is a root of a Storage_Data object. It contains additional information: the name and the data type of the persistent object. When retrieving a Storage_Data object from a container (for example, a file) you access its roots with the function Roots which returns a sequence of root objects. The provided functions allow you to request information about each root of the sequence. You do not create explicit roots: when inserting data in a Storage_Data object, you just provide the persistent object and optionally its name to the function AddRoot.
Storage_Root::Storage_Root | ( | ) |
Storage_Root::Storage_Root | ( | const TCollection_AsciiString & | theName, |
const Handle< Standard_Persistent > & | theObject | ||
) |
Storage_Root::Storage_Root | ( | const TCollection_AsciiString & | theName, |
const Standard_Integer | theRef, | ||
const TCollection_AsciiString & | theType | ||
) |
TCollection_AsciiString Storage_Root::Name | ( | ) | const |
Returns the name of this root object. The name may have been given explicitly when the root was inserted into the Storage_Data object. If not, the name is a reference number which was assigned automatically by the driver when writing the set of data into the container. When naming the roots, it is easier to retrieve objects by significant references rather than by references without any semantic values. Warning The returned string will be empty if you call this function before having named this root object, either explicitly, or when writing the set of data into the container.
Handle< Standard_Persistent > Storage_Root::Object | ( | ) | const |
Returns the persistent object encapsulated by this root.
Standard_Integer Storage_Root::Reference | ( | ) | const |
void Storage_Root::SetName | ( | const TCollection_AsciiString & | theName | ) |
void Storage_Root::SetObject | ( | const Handle< Standard_Persistent > & | anObject | ) |
void Storage_Root::SetReference | ( | const Standard_Integer | aRef | ) |
void Storage_Root::SetType | ( | const TCollection_AsciiString & | aType | ) |
TCollection_AsciiString Storage_Root::Type | ( | ) | const |
Returns the name of this root type.