mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
Started the parser.
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user