Open CASCADE Technology  6.9.1
Public Member Functions
IFSelect_Transformer Class Referenceabstract

A Transformer defines the way an InterfaceModel is transformed (without sending it to a file). In order to work, each type of Transformer defines it method Perform, it can be parametred as needed. More...

#include <IFSelect_Transformer.hxx>

Inheritance diagram for IFSelect_Transformer:
Inheritance graph
[legend]

Public Member Functions

virtual Standard_Boolean Perform (const Interface_Graph &G, const Handle< Interface_Protocol > &protocol, Interface_CheckIterator &checks, Handle< Interface_InterfaceModel > &newmod)=0
 Performs a Transformation (defined by each sub-class) : <G> gives the input data (especially the starting model) and can be used for queries (by Selections, etc...) <protocol> allows to work with General Services as necessary (it applies to input data) If the change corresponds to a conversion to a new protocol, see also the method ChangeProtocol <checks> stores produced checks messages if any <newmod> gives the result of the transformation : More...
 
virtual Standard_Boolean ChangeProtocol (Handle< Interface_Protocol > &newproto) const
 This methods allows to declare that the Protocol applied to the new Model has changed. It applies to the last call to Perform. More...
 
virtual Standard_Boolean Updated (const Handle< Standard_Transient > &entfrom, Handle< Standard_Transient > &entto) const =0
 This method allows to know what happened to a starting entity after the last Perform. If <entfrom> (from starting model) has one and only one known item which corresponds in the new produced model, this method must return True and fill the argument <entto>. Else, it returns False. More...
 
virtual TCollection_AsciiString Label () const =0
 Returns a text which defines the way a Transformer works (to identify the transformation it performs) More...
 
- Public Member Functions inherited from MMgt_TShared
virtual void Delete () const
 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_Transientoperator= (const Standard_Transient &)
 Assignment operator, needed to avoid copying reference counter. More...
 
virtual ~Standard_Transient ()
 Destructor must be virtual. More...
 
virtual const Handle_Standard_Type & DynamicType () const
 Returns a type information object about this object. More...
 
Standard_Boolean IsInstance (const 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 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...
 
virtual Handle_Standard_Transient This () const
 Returns a Handle which references this object. Must never be called to objects created in stack. More...
 
Standard_Integer GetRefCount () const
 Get the reference counter of this object. More...
 

Detailed Description

A Transformer defines the way an InterfaceModel is transformed (without sending it to a file). In order to work, each type of Transformer defines it method Perform, it can be parametred as needed.

It receives a Model (the data set) as input. It then can :

Member Function Documentation

virtual Standard_Boolean IFSelect_Transformer::ChangeProtocol ( Handle< Interface_Protocol > &  newproto) const
virtual

This methods allows to declare that the Protocol applied to the new Model has changed. It applies to the last call to Perform.

Returns True if the Protocol has changed, False else. The provided default keeps the starting Protocol. This method should be redefined as required by the effect of Perform.

virtual TCollection_AsciiString IFSelect_Transformer::Label ( ) const
pure virtual

Returns a text which defines the way a Transformer works (to identify the transformation it performs)

Implemented in IFSelect_TransformStandard, and IGESSelect_SplineToBSpline.

virtual Standard_Boolean IFSelect_Transformer::Perform ( const Interface_Graph G,
const Handle< Interface_Protocol > &  protocol,
Interface_CheckIterator checks,
Handle< Interface_InterfaceModel > &  newmod 
)
pure virtual

Performs a Transformation (defined by each sub-class) : <G> gives the input data (especially the starting model) and can be used for queries (by Selections, etc...) <protocol> allows to work with General Services as necessary (it applies to input data) If the change corresponds to a conversion to a new protocol, see also the method ChangeProtocol <checks> stores produced checks messages if any <newmod> gives the result of the transformation :

  • if it is Null (i.e. has not been affected), the transformation has been made on the spot, it is assumed to cause no change to the graph of dependances
  • if it equates the starting Model, it has been transformed on the spot (possibiliy some entities were replaced inside it)
  • if it is new, it corresponds to a new data set which replaces the starting one

<me> is mutable to allow results for ChangeProtocol to be memorized if needed, and to store informations useful for the method Updated

Returns True if Done, False if an Error occured : in this case, if a new data set has been produced, the transformation is ignored, else data may be corrupted.

Implemented in IFSelect_TransformStandard, and IGESSelect_SplineToBSpline.

virtual Standard_Boolean IFSelect_Transformer::Updated ( const Handle< Standard_Transient > &  entfrom,
Handle< Standard_Transient > &  entto 
) const
pure virtual

This method allows to know what happened to a starting entity after the last Perform. If <entfrom> (from starting model) has one and only one known item which corresponds in the new produced model, this method must return True and fill the argument <entto>. Else, it returns False.

Implemented in IFSelect_TransformStandard, and IGESSelect_SplineToBSpline.


The documentation for this class was generated from the following file: