mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
20 lines
298 B
C++
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;
|
|
};
|
|
}
|