Go to the documentation of this file.
   26 #ifndef __TERRALIB_DATAACCESS_INTERNAL_JOINCONDITIONUSING_H 
   27 #define __TERRALIB_DATAACCESS_INTERNAL_JOINCONDITIONUSING_H 
   33 #include <boost/ptr_container/ptr_vector.hpp> 
  108 #endif  // __TERRALIB_DATAACCESS_INTERNAL_JOINCONDITIONUSING_H 
  
 
JoinConditionUsing & operator=(const JoinConditionUsing &rhs)
 
void push_back(Expression *e)
It adds the condition to the conteiner.
 
std::size_t getNumFields() const
It returns the number of fields in this join condition.
 
TE_DEFINE_VISITABLE JoinConditionUsing()
Default constructor.
 
#define TEDATAACCESSEXPORT
You can use this macro in order to export/import classes and functions from this module.
 
A condition to be used in a Join clause.
 
This is an abstract class that models a query expression.
 
JoinCondition * clone() const
It creates a new copy of this JoinCondition.
 
#define TE_DEFINE_VISITABLE
 
const Expression * operator[](std::size_t i) const
It returns the i-th condition.
 
void erase(std::size_t i)
It releases the i-th condition expression and trim the conteiner.
 
JoinConditionUsing(const JoinConditionUsing &rhs)
Copy constructor.
 
A condition to be used in a Join clause.
 
void clear()
It will release all condition expressions and then it will clear the conteiner.
 
JoinConditionUsing class can be used to model a USING clause in a Join.
 
boost::ptr_vector< Expression > m_fields
The join column list.
 
~JoinConditionUsing()
Destructor.