yaml-cpp/include/parserstate.h
2008-09-03 22:20:39 +00:00

21 lines
278 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;
};
}