mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
18 lines
204 B
C++
18 lines
204 B
C++
#pragma once
|
|
|
|
#include "content.h"
|
|
#include <string>
|
|
|
|
namespace YAML
|
|
{
|
|
class Scalar: public Content
|
|
{
|
|
public:
|
|
Scalar();
|
|
virtual ~Scalar();
|
|
|
|
protected:
|
|
std::string m_data;
|
|
};
|
|
}
|