rapidyaml  0.9.0
parse and emit YAML, and do it fast
fwd.hpp
Go to the documentation of this file.
1 #ifndef _C4_YML_FWD_HPP_
2 #define _C4_YML_FWD_HPP_
3 
4 /** @file fwd.hpp forward declarations */
5 
6 namespace c4 {
7 namespace yml {
8 
9 struct NodeScalar;
10 struct NodeInit;
11 struct NodeData;
12 struct NodeType;
13 class NodeRef;
14 class ConstNodeRef;
15 class Tree;
16 struct ReferenceResolver;
17 template<class EventHandler> class ParseEngine;
18 struct EventHandlerTree;
20 
21 } // namespace c4
22 } // namespace yml
23 
24 #endif /* _C4_YML_FWD_HPP_ */
This is the main driver of parsing logic: it scans the YAML or JSON source for tokens,...
Definition: common.cpp:12