mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
Preliminary setup - basic data structures are there.
This commit is contained in:
parent
e22eea26b1
commit
4ed7f62431
12 changed files with 186 additions and 4 deletions
17
map.cpp
Normal file
17
map.cpp
Normal file
|
@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue