map.cpp 231 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "map.h"
#include "node.h"

namespace YAML
{
	Map::Map()
	{
	}

	Map::~Map()
	{
		for(node_map::const_iterator it=m_data.begin();it!=m_data.end();++it) {
			delete it->first;
			delete it->second;
		}
	}
}