rpcs3/document.h
Jesse Beder 110a7f06a8
2008-06-25 22:45:08 +00:00

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;
};
}