This commit is contained in:
beder
2008-06-25 22:45:08 +00:00
parent f959a475b7
commit 0134c553a5
6 changed files with 93 additions and 0 deletions

12
node.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "node.h"
namespace YAML
{
Node::Node()
{
}
Node::~Node()
{
}
}