This commit is contained in:
Jesse Beder
2008-06-25 22:45:08 +00:00
parent bb55b0ba91
commit 110a7f06a8
6 changed files with 93 additions and 0 deletions

20
node.h Normal file
View File

@@ -0,0 +1,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;
};
}