Started implementing node_data

This commit is contained in:
Jesse Beder
2011-09-07 00:45:28 -05:00
parent 00e4a56d15
commit a530630f1c
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)
{
}
}
}