28 #ifndef NOTEXPRESSIONNODE_H
29 #define NOTEXPRESSIONNODE_H
32 #include <boost/fusion/include/adapt_struct.hpp>
34 namespace jmespath {
namespace ast {
72 BOOST_FUSION_ADAPT_STRUCT(
76 #endif // NOTEXPRESSIONNODE_H
bool operator==(const NotExpressionNode &other) const
Equality compares this node to the other.
Definition: notexpressionnode.cpp:50
void accept(interpreter::AbstractVisitor *visitor) const override
Calls the visit method of the given visitor with the dynamic type of the node.
Definition: notexpressionnode.cpp:45
NotExpressionNode()
Constructs an emtpy NotExpressionNode object.
Definition: notexpressionnode.cpp:34
The AbstractVisitor class is an interface which defines the member functions required to visit every ...
Definition: abstractvisitor.h:71
The NotExpressionNode class represents a JMESPath not expression.
Definition: notexpressionnode.h:39
The ExpressionNode class represents a JMESPath expression.
Definition: expressionnode.h:56
The AbstractNode class is the common interface class for all AST node types.
Definition: abstractnode.h:45
ExpressionNode expression
The node's child expression.
Definition: notexpressionnode.h:68