An abstract interface for operators. More...
#include <AbstractOp.h>
  
Public Types | |
| typedef void | ReturnType | 
| typedef Visitor | VisitorType | 
Public Member Functions | |
| virtual ReturnType | accept (VisitorType &guest) const=0 | 
| It call the visit method from the guest object.  More... | |
Initializer Methods  | |
Methods related to instantiation and destruction.  | |
| AbstractOp (const char *opName=0) | |
| It initializes the operator.  More... | |
| virtual | ~AbstractOp () | 
| Virtual destructor.  More... | |
Accessor methods  | |
Methods used to get or set properties.  | |
| const char * | getName () const | 
| It returns the operator name.  More... | |
| void | setName (const char *opName) | 
| It sets the operator name.  More... | |
| virtual AbstractOp * | clone () const =0 | 
| It creates a new copy of this object.  More... | |
Not Allowed Methods | |
| const char * | m_name | 
| Operator name.  More... | |
| AbstractOp (const AbstractOp &rhs) | |
| No copy constructor allowed.  More... | |
| AbstractOp & | operator= (const AbstractOp &rhs) | 
| No assignment operator allowed.  More... | |
An abstract interface for operators.
Definition at line 47 of file AbstractOp.h.
      
  | 
  inherited | 
Definition at line 58 of file BaseVisitable.h.
      
  | 
  inherited | 
Definition at line 57 of file BaseVisitable.h.
| te::fe::AbstractOp::AbstractOp | ( | const char * | opName = 0 | ) | 
It initializes the operator.
| opName | The operator name. | 
      
  | 
  virtual | 
Virtual destructor.
      
  | 
  private | 
No copy constructor allowed.
| rhs | The other instance. | 
      
  | 
  pure virtualinherited | 
It call the visit method from the guest object.
| guest | The guest or visitor. | 
      
  | 
  pure virtual | 
It creates a new copy of this object.
Implemented in te::fe::UnaryLogicOp, te::fe::SpatialOp, te::fe::PropertyIsNull, te::fe::PropertyIsLike, te::fe::PropertyIsBetween, te::fe::LogicOp, te::fe::DistanceBuffer, te::fe::ComparisonOp, te::fe::BinarySpatialOp, te::fe::BinaryLogicOp, te::fe::BinaryComparisonOp, and te::fe::BBOXOp.
      
  | 
  inline | 
      
  | 
  private | 
No assignment operator allowed.
| rhs | The other instance. | 
      
  | 
  inline | 
It sets the operator name.
| opName | The operator name. | 
Definition at line 89 of file AbstractOp.h.
      
  | 
  protected | 
Operator name.
Definition at line 123 of file AbstractOp.h.