24 lines
395 B
C
24 lines
395 B
C
|
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "request.h"
|
||
|
|
||
|
namespace Request {
|
||
|
|
||
|
class Test : public Request {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Test (const QString& path);
|
||
|
|
||
|
protected:
|
||
|
void onSuccess (const QVariantMap &data) override;
|
||
|
|
||
|
private:
|
||
|
static const std::map<QString, QMetaType::Type> structure;
|
||
|
};
|
||
|
|
||
|
}
|