content.cpp 344 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "content.h"
#include "node.h"
#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
	}
}