rpcs3/node.h
Jesse Beder bcbca461de Beginning of first attempt to parse.
Will be completely wiped, I think, in favor of a Scanner (to tokens), then Parser mechanism.
2008-06-26 06:49:50 +00:00

28 lines
416 B
C++

#pragma once
#include <string>
#include <ios>
namespace YAML
{
const std::string StrTag = "!!str";
const std::string SeqTag = "!!seq";
const std::string MapTag = "!!map";
class Content;
class Parser;
class Node
{
public:
Node();
~Node();
void Clear();
void Read(Parser *pParser, const std::string& token);
private:
std::string m_tag;
Content *m_pContent;
};
}