Defines a PMI semantic element. More...
#include <cadex/ModelData_PMISemanticElement.hxx>
Classes | |
class | ComponentIterator |
Iterator over added components. More... | |
Public Types | |
typedef cadex::internal::ModelData_PMISemanticElementImpl | ImplType |
![]() | |
typedef int | IdType |
Defines a type identifier. | |
Public Member Functions | |
ModelData_PMISemanticElement () | |
Constructor. | |
ModelData_PMISemanticElement (initialized) | |
Constructor. | |
ModelData_PMISemanticElement (ImplType *theImpl) | |
Constructor (reserved for internal use). | |
void | AddComponent (const ModelData_PMISemanticElementComponent &theComponent) |
Adds a component. | |
bool | IsEmpty () const |
Returns true if no semantic element components were added. | |
size_t | NumberOfComponents () const |
Returns number of added components. | |
void | Accept (ModelData_PMISemanticElementComponentVisitor &theVisitor) const |
Accepts the visitor. | |
![]() | |
ModelData_BaseObject () | |
Constructor. | |
IdType | TypeId () const |
Returns an object type id. | |
template<typename T > | |
bool | IsOfType () const |
Returns true if the object has a type T. | |
void | SetName (const Base_UTF16String &theName) |
Sets an object name. | |
Base_UTF16String | Name () const |
void | SetUuid (const Base_Uuid &theUuid) |
Base_Uuid | Uuid () const |
void | Nullify () |
Resets reference to implementation object. | |
bool | IsNull () const |
Returns true if the object is nullified. | |
operator bool () const | |
Casts the object to the bool type. | |
internal::ModelData_BaseObjectImpl * | Impl () const |
Return a handle to backend (reserved for internal use). | |
Static Public Member Functions | |
static IdType | GetTypeId () |
Additional Inherited Members | |
![]() | |
ModelData_BaseObject (const internal::ModelData_BaseObjectImpl *theImpl) | |
Constructor (reserved for internal use). | |
ModelData_BaseObject (const internal::ModelData_BaseObjectImpl *theImpl, const Base_UTF16String &theName) | |
Constructor (reserved for internal use). | |
template<typename T > | |
T * | GetOrCreateImpl () |
Reserved for internal use. | |
Defines a PMI semantic element.
Semantic PMI is specific 'attributes' bearing semantics of PMI such as value of dimension, tolerance bounds, etc. that are stored as alphanumeric data, not as a graphical presentation.
The stored information may be annotations associated with a CAD model's edges and faces such as dimensional/geometric tolerances or datum features. Like graphical element semantic element may consists of several components (ModelData_PMISemanticElementComponent subclasses) each one representing specific semantic notation.
cadex::ModelData_PMISemanticElement::ModelData_PMISemanticElement | ( | ) |
Constructor.
Creates uninitialized object, for which IsNull() returns true.
|
explicit |
Constructor.
Creates initialized object, for which IsNull() returns false.
void cadex::ModelData_PMISemanticElement::Accept | ( | ModelData_PMISemanticElementComponentVisitor & | theVisitor | ) | const |
Accepts the visitor.
The components are visited in the order in which they were added with the AddComponent() method.
bool cadex::ModelData_PMISemanticElement::IsEmpty | ( | ) | const |
Returns true if no semantic element components were added.
Returns true if IsNull().
size_t cadex::ModelData_PMISemanticElement::NumberOfComponents | ( | ) | const |