mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +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
6
node.h
6
node.h
|
@ -10,6 +10,7 @@ namespace YAML
|
|||
const std::string MapTag = "!!map";
|
||||
|
||||
class Content;
|
||||
class Scanner;
|
||||
|
||||
class Node
|
||||
{
|
||||
|
@ -18,6 +19,11 @@ namespace YAML
|
|||
~Node();
|
||||
|
||||
void Clear();
|
||||
void Parse(Scanner *pScanner);
|
||||
void Write(std::ostream& out, int indent);
|
||||
|
||||
private:
|
||||
void ParseHeader(Scanner *pScanner);
|
||||
|
||||
private:
|
||||
std::string m_tag;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue