yaml-cpp/scalar.cpp

13 lines
139 B
C++
Raw Normal View History

#include "scalar.h"
namespace YAML
{
Scalar::Scalar(const std::string& data): m_data(data)
{
}
Scalar::~Scalar()
{
}
}