1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-20 03:29:32 +02:00
vcmi/vcmiqt/jsonutils.h

30 lines
611 B
C++
Raw Normal View History

2022-09-18 03:23:17 +04:00
/*
* jsonutils.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
2024-10-07 08:47:00 +03:00
#include "vcmiqt.h"
2022-09-18 03:23:17 +04:00
#include <QVariant>
VCMI_LIB_NAMESPACE_BEGIN
class JsonNode;
2022-09-18 03:23:17 +04:00
namespace JsonUtils
{
2024-10-07 08:47:00 +03:00
VCMIQT_LINKAGE QVariant toVariant(const JsonNode & node);
VCMIQT_LINKAGE JsonNode jsonFromFile(QString filename);
2022-09-18 03:23:17 +04:00
2024-10-07 08:47:00 +03:00
VCMIQT_LINKAGE JsonNode toJson(QVariant object);
VCMIQT_LINKAGE void jsonToFile(QString filename, const JsonNode & object);
2022-09-18 03:23:17 +04:00
}
VCMI_LIB_NAMESPACE_END