mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-10 04:51:17 +00:00
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
#include "scanner.h"
|
||||
#include "token.h"
|
||||
#include "exceptions.h"
|
||||
#include "node.h"
|
||||
#include <sstream>
|
||||
|
||||
namespace YAML
|
||||
@@ -37,6 +38,11 @@ namespace YAML
|
||||
out << "\"\n";
|
||||
}
|
||||
|
||||
CONTENT_TYPE Scalar::GetType() const
|
||||
{
|
||||
return CT_SCALAR;
|
||||
}
|
||||
|
||||
void Scalar::Read(std::string& s)
|
||||
{
|
||||
s = m_data;
|
||||
|
Reference in New Issue
Block a user