mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00

Will be completely wiped, I think, in favor of a Scanner (to tokens), then Parser mechanism.
13 lines
139 B
C++
13 lines
139 B
C++
#include "scalar.h"
|
|
|
|
namespace YAML
|
|
{
|
|
Scalar::Scalar(const std::string& data): m_data(data)
|
|
{
|
|
}
|
|
|
|
Scalar::~Scalar()
|
|
{
|
|
}
|
|
}
|