Open CASCADE Technology
7.7.0
|
General module to read and write StepAP214 entities. More...
#include <RWStepAP214_ReadWriteModule.hxx>
Public Member Functions | |
RWStepAP214_ReadWriteModule () | |
Standard_Integer | CaseStep (const TCollection_AsciiString &atype) const override |
associates a positive Case Number to each type of StepAP214 entity, given as a String defined in the EXPRESS form More... | |
virtual Standard_Integer | CaseStep (const TColStd_SequenceOfAsciiString &types) const override |
associates a positive Case Number to each type of StepAP214 Complex entity, given as a String defined in the EXPRESS form More... | |
virtual Standard_Boolean | IsComplex (const Standard_Integer CN) const override |
returns True if the Case Number corresponds to a Complex Type More... | |
const TCollection_AsciiString & | StepType (const Standard_Integer CN) const override |
returns a StepType (defined in EXPRESS form which belongs to a Type of Entity, identified by its CaseNumber determined by Protocol More... | |
virtual Standard_Boolean | ComplexType (const Standard_Integer CN, TColStd_SequenceOfAsciiString &types) const override |
Function specific to STEP, which delivers the list of types which corresponds to a complex type. If <CN> is not for a complex type, this method returns False. Else it returns True and fills the list in alphabetic order. The default returns False. To be redefined as required. More... | |
void | ReadStep (const Standard_Integer CN, const Handle< StepData_StepReaderData > &data, const Standard_Integer num, Handle< Interface_Check > &ach, const Handle< Standard_Transient > &ent) const override |
Specific Read Function. Works with StepReaderData. More... | |
void | WriteStep (const Standard_Integer CN, StepData_StepWriter &SW, const Handle< Standard_Transient > &ent) const override |
Write Function, switched by CaseNum. More... | |
Public Member Functions inherited from StepData_ReadWriteModule | |
Standard_Integer | CaseNum (const Handle< Interface_FileReaderData > &data, const Standard_Integer num) const override |
Translate the Type of record <num> in <data> to a positive Case Number, or 0 if failed. Works with a StepReaderData, in which the Type of an Entity is defined as a String : Reads the RecordType <num> then calls CaseNum (this type) Warning : The methods CaseStep, StepType and Recognize, must be in phase (triplets CaseNum-StepType-Type of Object) More... | |
virtual TCollection_AsciiString | ShortType (const Standard_Integer CN) const |
Function specific to STEP. Some STEP Types have a short form This method can be redefined to fill it By default, returns an empty string, which is then interpreted to take normal form from StepType. More... | |
void | Read (const Standard_Integer CN, const Handle< Interface_FileReaderData > &data, const Standard_Integer num, Handle< Interface_Check > &ach, const Handle< Standard_Transient > &ent) const override |
General Read Function, calls ReadStep. More... | |
Public Member Functions inherited from Interface_ReaderModule | |
virtual Standard_Boolean | NewRead (const Standard_Integer casenum, const Handle< Interface_FileReaderData > &data, const Standard_Integer num, Handle< Interface_Check > &ach, Handle< Standard_Transient > &ent) const |
Specific operator (create+read) defaulted to do nothing. It can be redefined when it is not possible to work in two steps (NewVoid then Read). This occurs when no default constructor is defined : hence the result <ent> must be created with an effective definition from the reader. Remark : if NewRead is defined, Copy has nothing to do. 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 void | Delete () const |
Memory deallocator for transient classes. 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... | |
General module to read and write StepAP214 entities.
RWStepAP214_ReadWriteModule::RWStepAP214_ReadWriteModule | ( | ) |
|
overridevirtual |
associates a positive Case Number to each type of StepAP214 entity, given as a String defined in the EXPRESS form
Implements StepData_ReadWriteModule.
|
overridevirtual |
associates a positive Case Number to each type of StepAP214 Complex entity, given as a String defined in the EXPRESS form
Reimplemented from StepData_ReadWriteModule.
|
overridevirtual |
Function specific to STEP, which delivers the list of types which corresponds to a complex type. If <CN> is not for a complex type, this method returns False. Else it returns True and fills the list in alphabetic order. The default returns False. To be redefined as required.
Reimplemented from StepData_ReadWriteModule.
|
overridevirtual |
returns True if the Case Number corresponds to a Complex Type
Reimplemented from StepData_ReadWriteModule.
|
overridevirtual |
Specific Read Function. Works with StepReaderData.
Implements StepData_ReadWriteModule.
|
overridevirtual |
returns a StepType (defined in EXPRESS form which belongs to a Type of Entity, identified by its CaseNumber determined by Protocol
Implements StepData_ReadWriteModule.
|
overridevirtual |
Write Function, switched by CaseNum.
Implements StepData_ReadWriteModule.