Files
yaml-cpp/scalar.h
T

18 lines
227 B
C++
Raw Normal View History

#pragma once
#include "content.h"
#include <string>
namespace YAML
{
class Scalar: public Content
{
public:
2008-06-26 06:49:50 +00:00
Scalar(const std::string& data);
virtual ~Scalar();
protected:
std::string m_data;
};
}