mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
20 lines
235 B
C++
20 lines
235 B
C++
#pragma once
|
|
|
|
#include "content.h"
|
|
#include <vector>
|
|
|
|
namespace YAML
|
|
{
|
|
class Node;
|
|
|
|
class Sequence: public Content
|
|
{
|
|
public:
|
|
Sequence();
|
|
virtual ~Sequence();
|
|
|
|
protected:
|
|
std::vector <Node *> m_data;
|
|
};
|
|
}
|