mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
18 lines
171 B
C++
18 lines
171 B
C++
#pragma once
|
|
|
|
namespace YAML
|
|
{
|
|
class Node;
|
|
|
|
class Document
|
|
{
|
|
public:
|
|
Document();
|
|
~Document();
|
|
|
|
void Clear();
|
|
|
|
private:
|
|
Node *m_pRoot;
|
|
};
|
|
}
|