mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
Finished parsing of basic data types (scalar, sequence, map).
This commit is contained in:
parent
c1966ba3fc
commit
121c2e577f
20 changed files with 434 additions and 221 deletions
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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue