28 #ifndef RAWSTRINGNODE_H
29 #define RAWSTRINGNODE_H
32 #include <boost/fusion/include/adapt_struct.hpp>
34 namespace jmespath {
namespace ast {
72 BOOST_FUSION_ADAPT_STRUCT(
76 #endif // RAWSTRINGNODE_H
bool operator==(const RawStringNode &other) const
Equality compares this node to the other.
Definition: rawstringnode.cpp:49
RawStringNode()
Constructs an empty RawStringNode object.
Definition: rawstringnode.cpp:33
void accept(interpreter::AbstractVisitor *visitor) const override
Calls the visit method of the given visitor with the dynamic type of the node.
Definition: rawstringnode.cpp:44
std::basic_string< Char > String
UTF-8 encoded string type.
Definition: types.h:44
String rawString
The raw string value.
Definition: rawstringnode.h:68
The AbstractVisitor class is an interface which defines the member functions required to visit every ...
Definition: abstractvisitor.h:71
The RawStringNode class represents a JMESPath raw string literal.
Definition: rawstringnode.h:39
The AbstractNode class is the common interface class for all AST node types.
Definition: abstractnode.h:45