mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00

Will be completely wiped, I think, in favor of a Scanner (to tokens), then Parser mechanism.
18 lines
227 B
C++
18 lines
227 B
C++
#pragma once
|
|
|
|
#include "content.h"
|
|
#include <string>
|
|
|
|
namespace YAML
|
|
{
|
|
class Scalar: public Content
|
|
{
|
|
public:
|
|
Scalar(const std::string& data);
|
|
virtual ~Scalar();
|
|
|
|
protected:
|
|
std::string m_data;
|
|
};
|
|
}
|