mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
Will be completely wiped, I think, in favor of a Scanner (to tokens), then Parser mechanism.
17 lines
227 B
C++
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;
|
|
};
|
|
}
|