node_data.cpp 192 Bytes
Newer Older
Jesse Beder's avatar
Jesse Beder committed
1
2
3
4
5
6
7
8
9
10
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)
		{
		}
	}
}