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()
|
|
{
|
|
}
|
|
}
|