mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-10 04:51:17 +00:00
This commit is contained in:
22
document.h
Normal file
22
document.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user