mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-10 04:51:17 +00:00
22 lines
344 B
C++
22 lines
344 B
C++
#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
|
|
}
|
|
}
|