mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12:00
22 lines
277 B
C++
22 lines
277 B
C++
#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;
|
|
};
|
|
}
|