rpcs3/parserstate.h
2008-07-01 06:28:10 +00:00

20 lines
298 B
C++

#pragma once
#include <string>
#include <map>
namespace YAML
{
struct Version {
int major, minor;
};
struct ParserState
{
Version version;
std::map <std::string, std::string> tags;
void Reset();
std::string TranslateTag(const std::string& handle) const;
};
}