A class that can be used to model a filter expression that can be applied to a query. More...
#include <Where.h>
Public Member Functions | |
| Expression * | getExp () const | 
| Where & | operator= (const Where &rhs) | 
| void | setExp (Expression *exp) | 
| Sets the expression.  More... | |
| Where (Expression *e) | |
| Constructor.  More... | |
| Where (const Expression &e) | |
| Where (const Where &rhs) | |
| ~Where () | |
Private Attributes | |
| std::unique_ptr< Expression > | m_exp | 
| The expression that defines the where clause.  More... | |
A class that can be used to model a filter expression that can be applied to a query.
      
  | 
  explicit | 
Constructor.
| e | The where expression. | 
      
  | 
  explicit | 
| te::da::Where::Where | ( | const Where & | rhs | ) | 
| te::da::Where::~Where | ( | ) | 
| Expression* te::da::Where::getExp | ( | ) | const | 
| void te::da::Where::setExp | ( | Expression * | exp | ) | 
Sets the expression.
| e | The where expression. | 
      
  | 
  private |