summaryrefslogtreecommitdiffstats
path: root/yaml-cpp/src/directives.cpp
blob: faf1483bd2e60bec660cdf95143c5a86aa758ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 <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;
	}
}