mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 09:18:40 +12:00
Started the parser.
This commit is contained in:
parent
ed6c294749
commit
b6a0ef207b
12 changed files with 143 additions and 276 deletions
21
reader.h
Normal file
21
reader.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#pragma once
|
||||
|
||||
#include <ios>
|
||||
#include "document.h"
|
||||
|
||||
namespace YAML
|
||||
{
|
||||
class Parser;
|
||||
|
||||
class Reader
|
||||
{
|
||||
public:
|
||||
Reader(std::istream& in);
|
||||
~Reader();
|
||||
|
||||
void GetNextDocument(Document& document);
|
||||
|
||||
private:
|
||||
Parser *m_pParser;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue