yaml-cpp/node.h

27 lines
343 B
C
Raw Normal View History

2008-06-26 02:45:08 +04:00
#pragma once
#include <string>
#include <ios>
2008-06-26 02:45:08 +04:00
namespace YAML
{
const std::string StrTag = "!!str";
const std::string SeqTag = "!!seq";
const std::string MapTag = "!!map";
class Content;
2008-06-26 02:45:08 +04:00
class Node
{
public:
Node();
~Node();
void Clear();
2008-06-26 02:45:08 +04:00
private:
std::string m_tag;
Content *m_pContent;
2008-06-26 02:45:08 +04:00
};
}