Started the parser.

This commit is contained in:
Jesse Beder 2008-06-30 06:51:22 +00:00
parent ed6c294749
commit b6a0ef207b
12 changed files with 143 additions and 276 deletions

2
node.h
View file

@ -10,7 +10,6 @@ namespace YAML
const std::string MapTag = "!!map";
class Content;
class Parser;
class Node
{
@ -19,7 +18,6 @@ namespace YAML
~Node();
void Clear();
void Read(Parser *pParser, const std::string& token);
private:
std::string m_tag;