mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
28 lines
375 B
C++
28 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;
|
|
};
|
|
}
|