mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-02-15 06:53:58 +00:00
57 lines
1.4 KiB
C++
57 lines
1.4 KiB
C++
/*
|
|
* This file was generated by qdbusxml2cpp version 0.8
|
|
* Command line was: qdbusxml2cpp -p response.cpp resp.xml
|
|
*
|
|
* qdbusxml2cpp is Copyright (C) 2020 The Qt Company Ltd.
|
|
*
|
|
* This is an auto-generated file.
|
|
* Do not edit! All changes made to it will be lost.
|
|
*/
|
|
|
|
#ifndef RESPONSE_CPP
|
|
#define RESPONSE_CPP
|
|
#include <QtCore/QObject>
|
|
#include <QtCore/QByteArray>
|
|
#include <QtCore/QList>
|
|
#include <QtCore/QMap>
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QStringList>
|
|
#include <QtCore/QVariant>
|
|
#include <QtDBus/QtDBus>
|
|
|
|
/*
|
|
* Proxy class for interface org.freedesktop.portal.Request
|
|
*/
|
|
class OrgFreedesktopPortalRequestInterface: public QDBusAbstractInterface
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
static inline const char *staticInterfaceName()
|
|
{ return "org.freedesktop.portal.Request"; }
|
|
|
|
public:
|
|
OrgFreedesktopPortalRequestInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr);
|
|
|
|
~OrgFreedesktopPortalRequestInterface();
|
|
|
|
public Q_SLOTS: // METHODS
|
|
inline QDBusPendingReply<> Close()
|
|
{
|
|
QList<QVariant> argumentList;
|
|
return asyncCallWithArgumentList(QStringLiteral("Close"), argumentList);
|
|
}
|
|
|
|
Q_SIGNALS: // SIGNALS
|
|
void Response(uint response, QVariantMap results);
|
|
};
|
|
|
|
namespace org {
|
|
namespace freedesktop {
|
|
namespace portal {
|
|
typedef ::OrgFreedesktopPortalRequestInterface Request;
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|