aliasmanager.cpp 592 Bytes
Newer Older
1
2
#include "yaml-cpp/aliasmanager.h"
#include "yaml-cpp/node.h"
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <cassert>
#include <sstream>

namespace YAML
{
	AliasManager::AliasManager(): m_curAnchor(0)
	{
	}

	void AliasManager::RegisterReference(const Node& node)
	{
		m_anchorByIdentity.insert(std::make_pair(&node, _CreateNewAnchor()));
	}
16

17
18
19
20
21
22
23
	anchor_t AliasManager::LookupAnchor(const Node& node) const
	{
		AnchorByIdentity::const_iterator it = m_anchorByIdentity.find(&node);
		if(it == m_anchorByIdentity.end())
			return 0;
		return it->second;
	}
24

25
26
27
28
29
	anchor_t AliasManager::_CreateNewAnchor()
	{
		return ++m_curAnchor;
	}
}