You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
368 B
17 lines
368 B
#include "directives.h"
|
|
|
|
namespace YAML {
|
|
Directives::Directives() : version{true, 1, 2}, tags{} {}
|
|
|
|
std::string Directives::TranslateTagHandle(
|
|
const std::string& handle) const {
|
|
auto it = tags.find(handle);
|
|
if (it == tags.end()) {
|
|
if (handle == "!!")
|
|
return "tag:yaml.org,2002:";
|
|
return handle;
|
|
}
|
|
|
|
return it->second;
|
|
}
|
|
} // namespace YAML
|