mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 04:41:16 +00:00
21 lines
256 B
C++
21 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;
|
|
};
|
|
}
|