emitterutils.h 1.02 KB
Newer Older
1
2
#pragma once

3
4
5
6
#ifndef EMITTERUTILS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define EMITTERUTILS_H_62B23520_7C8E_11DE_8A39_0800200C9A66


7
#include "yaml-cpp/ostream.h"
8
9
10
11
12
13
#include <string>

namespace YAML
{
	namespace Utils
	{
14
		bool WriteString(ostream& out, const std::string& str, bool inFlow, bool escapeNonAscii);
15
		bool WriteSingleQuotedString(ostream& out, const std::string& str);
16
		bool WriteDoubleQuotedString(ostream& out, const std::string& str, bool escapeNonAscii);
17
18
19
20
		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);
21
		bool WriteTag(ostream& out, const std::string& str, bool verbatim);
22
		bool WriteTagWithPrefix(ostream& out, const std::string& prefix, const std::string& tag);
23
		bool WriteBinary(ostream& out, const char *data, std::size_t size);
24
25
	}
}
26
27

#endif // EMITTERUTILS_H_62B23520_7C8E_11DE_8A39_0800200C9A66