yaml-cpp/node.h

21 lines
256 B
C
Raw Normal View History

2008-06-26 02:45:08 +04:00
#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;
};
}