mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-26 02:25:03 +00:00
13 lines
181 B
C++
13 lines
181 B
C++
#pragma once
|
|
|
|
#include <QVariantMap>
|
|
|
|
class QByteArray;
|
|
|
|
namespace Katabasis {
|
|
|
|
/// Parse JSON data into a QVariantMap
|
|
QVariantMap parseJsonResponse(const QByteArray &data);
|
|
|
|
}
|