The subtraction operator. More...
#include <Sub.h>
  
 Public Types | |
| typedef void | ReturnType | 
| typedef QueryVisitor | VisitorType | 
Public Member Functions | |
| virtual ReturnType | accept (VisitorType &guest) const =0 | 
| It call the visit method from the guest object.  More... | |
| void | add (Expression *arg) | 
| It adds the argument to the function list of arguments.  More... | |
| Expression * | clone () const | 
| It creates a new copy of this expression.  More... | |
| Expression * | getArg (std::size_t i) const | 
| It returns the i-th function argument.  More... | |
| Expression * | getFirst () const | 
| It returns the first function argument.  More... | |
| const std::string & | getName () const | 
| It returns the function name.  More... | |
| std::size_t | getNumArgs () const | 
| It returns the number of arguments informed to the function.  More... | |
| Expression * | getSecond () const | 
| It returns the second function argument.  More... | |
| Sub & | operator= (const Sub &rhs) | 
| Expression * | operator[] (std::size_t i) const | 
| It returns the i-th function argument.  More... | |
| void | setFirst (Expression *arg) | 
| It sets the first function argument.  More... | |
| void | setSecond (Expression *arg) | 
| It sets the second function argument.  More... | |
| TE_DEFINE_VISITABLE | Sub (Expression *arg1, Expression *arg2) | 
| Constructor.  More... | |
| Sub (const Expression &arg1, const Expression &arg2) | |
| Constructor.  More... | |
| Sub (const Sub &rhs) | |
| Copy constructor.  More... | |
| ~Sub () | |
| Destructor.  More... | |
Protected Attributes | |
| std::vector< Expression * > | m_args | 
| The list of arguments.  More... | |
| std::string | m_name | 
| The function name. May be an operator symbol or just a regular name like ST_Intersects.  More... | |
      
  | 
  inherited | 
Definition at line 58 of file BaseVisitable.h.
      
  | 
  inherited | 
Definition at line 57 of file BaseVisitable.h.
      
  | 
  inline | 
      
  | 
  inline | 
| te::da::Sub::Sub | ( | const Sub & | rhs | ) | 
Copy constructor.
      
  | 
  pure virtualinherited | 
It call the visit method from the guest object.
| guest | The guest or visitor. | 
      
  | 
  inherited | 
It adds the argument to the function list of arguments.
| arg | The argument to be added. | 
      
  | 
  virtual | 
It creates a new copy of this expression.
Reimplemented from te::da::BinaryOp.
      
  | 
  inherited | 
It returns the i-th function argument.
| i | The argument position. | 
      
  | 
  inherited | 
It returns the first function argument.
      
  | 
  inlineinherited | 
      
  | 
  inherited | 
It returns the number of arguments informed to the function.
      
  | 
  inherited | 
It returns the second function argument.
      
  | 
  inherited | 
It returns the i-th function argument.
| i | The argument position. | 
      
  | 
  inherited | 
It sets the first function argument.
| arg | The first function argument. | 
      
  | 
  inherited | 
It sets the second function argument.
| arg | The second function argument. | 
      
  | 
  protectedinherited | 
The list of arguments.
Definition at line 118 of file Function.h.
      
  | 
  protectedinherited | 
The function name. May be an operator symbol or just a regular name like ST_Intersects.
Definition at line 117 of file Function.h.