Merged r366:387 from the jbeder-event-api branch

This commit is contained in:
jbeder
2010-10-18 06:45:03 +00:00
parent 78db8b02c8
commit 12d2beda29
35 changed files with 1280 additions and 634 deletions

21
src/content.cpp Normal file
View File

@@ -0,0 +1,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
}
}