|
jmespath.cpp
C++ implementation of JMESPath, a query language for JSON http://jmespath.org
|
#include "jmespath/types.h"#include "src/ast/allnodes.h"#include "src/parser/noderank.h"#include "src/parser/insertnodeaction.h"#include "src/parser/appendutf8action.h"#include "src/parser/appendescapesequenceaction.h"#include "src/parser/encodesurrogatepairaction.h"#include "src/parser/nodeinsertpolicy.h"#include "src/parser/nodeinsertcondition.h"#include <boost/spirit/include/qi.hpp>#include <boost/phoenix.hpp>Go to the source code of this file.
Classes | |
| class | jmespath::parser::Grammar< Iterator, Skipper > |
| The Grammar class contains the PEG rule definition based on the EBNF specifications of JMESPath. More... | |
Namespaces | |
| jmespath::parser | |
| Classes required for parsing JMESPath expressions. | |
| jmespath | |
| The top level namespace which contains the public functions of the library. | |
1.8.6