mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-02 09:02:03 +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);
|
||
|
}
|