content.cpp 353 Bytes
Newer Older
1
#include "content.h"
2
#include "yaml-cpp/node.h"
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <cassert>

namespace YAML
{
	void Content::SetData(const std::string&)
	{
		assert(false); // TODO: throw
	}

	void Content::Append(std::auto_ptr<Node>)
	{
		assert(false); // TODO: throw
	}

	void Content::Insert(std::auto_ptr<Node>, std::auto_ptr<Node>)
	{
		assert(false); // TODO: throw
	}
}