node.h 256 Bytes
Newer Older
beder's avatar
beder committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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;
	};
}