Files
yaml-cpp/scalar.cpp
T

13 lines
139 B
C++
Raw Normal View History

#include "scalar.h"
namespace YAML
{
2008-06-26 06:49:50 +00:00
Scalar::Scalar(const std::string& data): m_data(data)
{
}
Scalar::~Scalar()
{
}
}