mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
20 lines
252 B
C++
20 lines
252 B
C++
#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;
|
|
};
|
|
}
|