rpcs3/scalar.h
Jesse Beder bcbca461de Beginning of first attempt to parse.
Will be completely wiped, I think, in favor of a Scanner (to tokens), then Parser mechanism.
2008-06-26 06:49:50 +00:00

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