mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
25 lines
766 B
C++
25 lines
766 B
C++
#pragma once
|
|
|
|
#ifndef EMITTERUTILS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
|
|
#define EMITTERUTILS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
|
|
|
|
|
|
#include "ostream.h"
|
|
#include <string>
|
|
|
|
namespace YAML
|
|
{
|
|
namespace Utils
|
|
{
|
|
bool WriteString(ostream& out, const std::string& str, bool inFlow);
|
|
bool WriteSingleQuotedString(ostream& out, const std::string& str);
|
|
bool WriteDoubleQuotedString(ostream& out, const std::string& str);
|
|
bool WriteLiteralString(ostream& out, const std::string& str, int indent);
|
|
bool WriteComment(ostream& out, const std::string& str, int postCommentIndent);
|
|
bool WriteAlias(ostream& out, const std::string& str);
|
|
bool WriteAnchor(ostream& out, const std::string& str);
|
|
}
|
|
}
|
|
|
|
#endif // EMITTERUTILS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
|