-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
415 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#ifndef _C4_YML_FWD_HPP_ | ||
#define _C4_YML_FWD_HPP_ | ||
|
||
/** @file fwd.hpp forward declarations */ | ||
|
||
namespace c4 { | ||
namespace yml { | ||
|
||
struct NodeScalar; | ||
struct NodeInit; | ||
struct NodeData; | ||
struct NodeType; | ||
class NodeRef; | ||
class ConstNodeRef; | ||
class Tree; | ||
struct ReferenceResolver; | ||
template<class EventHandler> class ParseEngine; | ||
struct EventHandlerTree; | ||
using Parser = ParseEngine<EventHandlerTree>; | ||
|
||
} // namespace c4 | ||
} // namespace yml | ||
|
||
#endif /* _C4_YML_FWD_HPP_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.