2010-10-18 10:45:03 +04:00
|
|
|
#include "directives.h"
|
2008-09-04 02:20:39 +04:00
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
namespace YAML {
|
|
|
|
|
Directives::Directives() {
|
|
|
|
|
// version
|
|
|
|
|
version.isDefault = true;
|
|
|
|
|
version.major = 1;
|
|
|
|
|
version.minor = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const std::string Directives::TranslateTagHandle(const std::string& handle)
|
|
|
|
|
const {
|
|
|
|
|
std::map<std::string, std::string>::const_iterator it = tags.find(handle);
|
|
|
|
|
if (it == tags.end()) {
|
|
|
|
|
if (handle == "!!")
|
|
|
|
|
return "tag:yaml.org,2002:";
|
|
|
|
|
return handle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return it->second;
|
|
|
|
|
}
|
2008-09-04 02:20:39 +04:00
|
|
|
}
|