12 lines
192 B
C++
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)
|
|
{
|
|
}
|
|
}
|
|
}
|