mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-10 13:01:18 +00:00
Started implementing node_data
This commit is contained in:
11
src/value/detail/node_data.cpp
Normal file
11
src/value/detail/node_data.cpp
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user