yaml-cpp/src/value/detail/node_data.cpp
2011-09-07 00:45:28 -05:00

12 lines
192 B
C++

#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)
{
}
}
}