mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +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
15
sequence.cpp
Normal file
15
sequence.cpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include "sequence.h"
|
||||
#include "node.h"
|
||||
|
||||
namespace YAML
|
||||
{
|
||||
Sequence::Sequence()
|
||||
{
|
||||
}
|
||||
|
||||
Sequence::~Sequence()
|
||||
{
|
||||
for(unsigned i=0;i<m_data.size();i++)
|
||||
delete m_data[i];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue