Spatial area operator. More...
#include <ST_Area.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... | |
| 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... | |
| ST_Area & | operator= (const ST_Area &rhs) | 
| Expression * | operator[] (std::size_t i) const | 
| It returns the i-th function argument.  More... | |
| ST_Area (const Expression &e) | |
| Constructor.  More... | |
| ST_Area (const Expression &e, const bool &p) | |
| Constructor.  More... | |
| ST_Area (const te::da::PropertyName &prop) | |
| Constructor.  More... | |
| ST_Area (const te::da::PropertyName &prop, const bool &p) | |
| Constructor.  More... | |
| TE_DEFINE_VISITABLE | ST_Area (const te::gm::Geometry &g) | 
| Constructor.  More... | |
| ST_Area (const te::gm::Geometry &g, const bool &p) | |
| Constructor.  More... | |
| ~ST_Area () | |
| 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... | |
Spatial area operator.
Spatial convex hull operator.
This function is just a syntatic-suggar.
      
  | 
  inherited | 
Definition at line 58 of file BaseVisitable.h.
      
  | 
  inherited | 
Definition at line 57 of file BaseVisitable.h.
| TE_DEFINE_VISITABLE te::da::ST_Area::ST_Area | ( | const te::gm::Geometry & | g | ) | 
Constructor.
| g | The geometry literal. | 
| te::da::ST_Area::ST_Area | ( | const te::da::PropertyName & | prop | ) | 
Constructor.
| prop | The geometry property name. | 
| te::da::ST_Area::ST_Area | ( | const te::gm::Geometry & | g, | 
| const bool & | p | ||
| ) | 
Constructor.
| g | The geometry literal. | 
| p | Precision. | 
| te::da::ST_Area::ST_Area | ( | const te::da::PropertyName & | prop, | 
| const bool & | p | ||
| ) | 
Constructor.
| prop | The geometry property name. | 
| p | Precision. | 
| te::da::ST_Area::ST_Area | ( | const Expression & | e | ) | 
Constructor.
| e | The expression. | 
| p | Precision. | 
| te::da::ST_Area::ST_Area | ( | const Expression & | e, | 
| const bool & | p | ||
| ) | 
Constructor.
| e | The expression. | 
| p | Precision. | 
| te::da::ST_Area::~ST_Area | ( | ) | 
Destructor.
      
  | 
  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::Function.
      
  | 
  inherited | 
It returns the i-th function argument.
| i | The argument position. | 
      
  | 
  inlineinherited | 
      
  | 
  inherited | 
It returns the number of arguments informed to the function.
      
  | 
  inherited | 
It returns the i-th function argument.
| i | The argument position. | 
      
  | 
  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.