Started the parser.

This commit is contained in:
beder
2008-06-30 06:51:22 +00:00
parent 795df7224b
commit 2a7e20a315
12 changed files with 143 additions and 276 deletions

View File

@@ -1,7 +1,5 @@
#pragma once
#include <string>
namespace YAML
{
class Node;
@@ -10,11 +8,9 @@ namespace YAML
{
public:
Document();
Document(const std::string& fileName);
~Document();
void Clear();
void Load(const std::string& fileName);
private:
Node *m_pRoot;