mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
27 lines
375 B
C++
27 lines
375 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <ios>
|
|
|
|
namespace YAML
|
|
{
|
|
const std::string StrTag = "!!str";
|
|
const std::string SeqTag = "!!seq";
|
|
const std::string MapTag = "!!map";
|
|
|
|
class Content;
|
|
|
|
class Node
|
|
{
|
|
public:
|
|
Node();
|
|
~Node();
|
|
|
|
void Clear();
|
|
void Read(std::istream& in);
|
|
|
|
private:
|
|
std::string m_tag;
|
|
Content *m_pContent;
|
|
};
|
|
}
|