yaml-cpp/src/value/detail/node_data.cpp

12 lines
192 B
C++
Raw Normal View History

2011-09-07 09:45:28 +04:00
#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)
{
}
}
}