Preliminary setup - basic data structures are there.

This commit is contained in:
beder
2008-06-25 23:00:18 +00:00
parent ffaf6a19ca
commit 2d0f324529
12 changed files with 186 additions and 4 deletions

13
content.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
namespace YAML
{
class Content
{
public:
Content();
virtual ~Content();
protected:
};
}