mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
Beginning of first attempt to parse.
Will be completely wiped, I think, in favor of a Scanner (to tokens), then Parser mechanism.
This commit is contained in:
@@ -6,13 +6,16 @@
|
||||
namespace YAML
|
||||
{
|
||||
class Node;
|
||||
class Parser;
|
||||
|
||||
class Sequence: public Content
|
||||
{
|
||||
public:
|
||||
Sequence();
|
||||
Sequence(Parser *pParser);
|
||||
virtual ~Sequence();
|
||||
|
||||
void Read(Parser *pParser);
|
||||
|
||||
protected:
|
||||
std::vector <Node *> m_data;
|
||||
};
|
||||
|
Reference in New Issue
Block a user