mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12:00
This commit is contained in:
parent
bb55b0ba91
commit
110a7f06a8
6 changed files with 93 additions and 0 deletions
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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue