yaml-cpp/document.h

23 lines
277 B
C
Raw Normal View History

2008-06-26 02:45:08 +04:00
#pragma once
#include <string>
namespace YAML
{
class Node;
class Document
{
public:
Document();
Document(const std::string& fileName);
~Document();
void Clear();
void Load(const std::string& fileName);
private:
Node *m_pRoot;
};
}