A class that can be used to model a filter expression that can be applied to a query. More...
#include <Having.h>
Public Member Functions | |
| Expression * | getExp () const |
| Having (Expression *e) | |
| Constructor. More... | |
| Having (const Expression &e) | |
| Having (const Having &rhs) | |
| Having & | operator= (const Having &rhs) |
| void | setExp (Expression *exp) |
| Sets the expression. More... | |
| ~Having () | |
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. |
Definition at line 30 of file Having.cpp.
|
explicit |
Definition at line 35 of file Having.cpp.
| te::da::Having::Having | ( | const Having & | rhs | ) |
Definition at line 40 of file Having.cpp.
|
default |
Referenced by Having().
| te::da::Expression * te::da::Having::getExp | ( | ) | const |
Definition at line 58 of file Having.cpp.
References m_exp.
Referenced by te::serialize::xml::Save(), te::gpkg::SQLVisitor::visit(), te::ogr::SQLVisitor::visit(), and te::da::SQLVisitor::visit().
| te::da::Having & te::da::Having::operator= | ( | const Having & | rhs | ) |
Definition at line 48 of file Having.cpp.
References m_exp.
| void te::da::Having::setExp | ( | Expression * | exp | ) |
Sets the expression.
| e | The where expression. |
Definition at line 63 of file Having.cpp.
References m_exp.
|
private |