From 8b52a31ed2c299b759f330c4f976b9c70f5765f4 Mon Sep 17 00:00:00 2001 From: Hanoh Haim Date: Wed, 24 Jun 2015 14:03:29 +0300 Subject: first version --- yaml-cpp/src/directives.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 yaml-cpp/src/directives.cpp (limited to 'yaml-cpp/src/directives.cpp') diff --git a/yaml-cpp/src/directives.cpp b/yaml-cpp/src/directives.cpp new file mode 100755 index 00000000..faf1483b --- /dev/null +++ b/yaml-cpp/src/directives.cpp @@ -0,0 +1,24 @@ +#include "directives.h" + +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 ::const_iterator it = tags.find(handle); + if(it == tags.end()) { + if(handle == "!!") + return "tag:yaml.org,2002:"; + return handle; + } + + return it->second; + } +} -- cgit 1.2.3-korg