mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-10 04:51:17 +00:00
Finished parsing of basic data types (scalar, sequence, map).
This commit is contained in:
5
parser.h
5
parser.h
@@ -1,13 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include <ios>
|
||||
#include <string>
|
||||
#include "scanner.h"
|
||||
#include "document.h"
|
||||
|
||||
namespace YAML
|
||||
{
|
||||
class Node;
|
||||
class Scanner;
|
||||
|
||||
class Parser
|
||||
{
|
||||
@@ -18,6 +17,6 @@ namespace YAML
|
||||
void GetNextDocument(Document& document);
|
||||
|
||||
private:
|
||||
Scanner m_scanner;
|
||||
Scanner *m_pScanner;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user