yaml-cpp/scalar.h

18 lines
227 B
C
Raw Normal View History

#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;
};
}