mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
37 lines
908 B
C++
37 lines
908 B
C++
/*
|
|
* JsonWriter.h, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include "JsonNode.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
class JsonWriter
|
|
{
|
|
//prefix for each line (tabulation)
|
|
std::string prefix;
|
|
std::ostream & out;
|
|
//sets whether compact nodes are written in single-line format
|
|
bool compact;
|
|
//tracks whether we are currently using single-line format
|
|
bool compactMode = false;
|
|
|
|
public:
|
|
template<typename Iterator>
|
|
void writeContainer(Iterator begin, Iterator end);
|
|
void writeEntry(JsonMap::const_iterator entry);
|
|
void writeEntry(JsonVector::const_iterator entry);
|
|
void writeString(const std::string & string);
|
|
void writeNode(const JsonNode & node);
|
|
JsonWriter(std::ostream & output, bool compact);
|
|
};
|
|
|
|
VCMI_LIB_NAMESPACE_END
|