mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-25 22:42:04 +02:00
13 lines
262 B
C
13 lines
262 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QVariant>
|
||
|
|
#include "../lib/JsonNode.h"
|
||
|
|
|
||
|
|
namespace JsonUtils
|
||
|
|
{
|
||
|
|
QVariant toVariant(const JsonNode & node);
|
||
|
|
QVariant JsonFromFile(QString filename);
|
||
|
|
|
||
|
|
JsonNode toJson(QVariant object);
|
||
|
|
void JsonToFile(QString filename, QVariant object);
|
||
|
|
}
|