Boolean NOT operator. More...
#include <Not.h>
Public Types | |
| typedef R | ReturnType |
| typedef Visitor | VisitorType |
Public Member Functions | |
| virtual ReturnType | accept (VisitorType &guest) const =0 |
| It call the visit method from the guest object. More... | |
Initializer Methods | |
Methods related to instantiation and destruction. | |
| Not (AbstractOp *arg) | |
| Constructor. More... | |
| ~Not () | |
| Destructor. More... | |
Accessor methods | |
Methods used to get or set properties. | |
| void | setOp (AbstractOp *o) |
| It sets the operand. More... | |
| AbstractOp * | getOp () const |
| It returns the operand. More... | |
Accessor methods | |
Methods used to get or set properties. | |
| const char * | getName () const |
| It returns the operator name. More... | |
| void | setName (const char *opName) |
| It sets the operator name. More... | |
Protected Attributes | |
| const char * | m_name |
| Operator name. More... | |
| AbstractOp * | m_op |
| Mandatory. More... | |
|
inherited |
Definition at line 58 of file BaseVisitable.h.
|
inherited |
Definition at line 57 of file BaseVisitable.h.
|
inline |
|
pure virtualinherited |
It call the visit method from the guest object.
| guest | The guest or visitor. |
|
inlineinherited |
It returns the operator name.
Definition at line 82 of file AbstractOp.h.
Referenced by GetQualifiedName(), te::map::QueryEncoder::visit(), and te::fe::serialize::AbstractOp::write().
|
inherited |
It returns the operand.
Definition at line 56 of file UnaryLogicOp.cpp.
Referenced by UnaryLogicOpWriter(), and te::map::QueryEncoder::visit().
|
inlineinherited |
It sets the operator name.
| opName | The operator name. |
Definition at line 89 of file AbstractOp.h.
|
inherited |
It sets the operand.
| o | The operand. |
Definition at line 50 of file UnaryLogicOp.cpp.
|
protectedinherited |
Operator name.
Definition at line 120 of file AbstractOp.h.
|
protectedinherited |
Mandatory.
Definition at line 106 of file UnaryLogicOp.h.