mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
20 lines
256 B
C++
20 lines
256 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace YAML
|
|
{
|
|
const std::string Str = "!!str";
|
|
const std::string Seq = "!!seq";
|
|
const std::string Map = "!!map";
|
|
|
|
class Node
|
|
{
|
|
public:
|
|
Node();
|
|
~Node();
|
|
|
|
private:
|
|
std::string m_tag;
|
|
};
|
|
}
|