mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
Preliminary setup - basic data structures are there.
This commit is contained in:
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];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user