Preliminary setup - basic data structures are there.

This commit is contained in:
Jesse Beder 2008-06-25 23:00:18 +00:00
parent e22eea26b1
commit 4ed7f62431
12 changed files with 186 additions and 4 deletions

20
map.h Normal file
View file

@ -0,0 +1,20 @@
#pragma once
#include "content.h"
#include <map>
namespace YAML
{
class Node;
class Map: public Content
{
public:
Map();
virtual ~Map();
protected:
typedef std::map <Node *, Node *> node_map;
node_map m_data;
};
}