Started implementing node_data

This commit is contained in:
beder
2011-09-07 00:45:28 -05:00
parent 555cfae28d
commit a07642f156
8 changed files with 68 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
#include "yaml-cpp/value/detail/node_data.h"
namespace YAML
{
namespace detail
{
node_data::node_data(const std::string& scalar): m_type(ValueType::Scalar), m_scalar(scalar)
{
}
}
}