mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
19 lines
171 B
C++
19 lines
171 B
C++
#pragma once
|
|
|
|
namespace YAML
|
|
{
|
|
class Node;
|
|
|
|
class Document
|
|
{
|
|
public:
|
|
Document();
|
|
~Document();
|
|
|
|
void Clear();
|
|
|
|
private:
|
|
Node *m_pRoot;
|
|
};
|
|
}
|