mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12: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:
parent
4ed7f62431
commit
bcbca461de
11 changed files with 247 additions and 9 deletions
3
node.h
3
node.h
|
@ -10,6 +10,7 @@ namespace YAML
|
|||
const std::string MapTag = "!!map";
|
||||
|
||||
class Content;
|
||||
class Parser;
|
||||
|
||||
class Node
|
||||
{
|
||||
|
@ -18,7 +19,7 @@ namespace YAML
|
|||
~Node();
|
||||
|
||||
void Clear();
|
||||
void Read(std::istream& in);
|
||||
void Read(Parser *pParser, const std::string& token);
|
||||
|
||||
private:
|
||||
std::string m_tag;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue