mirror of
https://github.com/theCheeseboard/thedesk.git
synced 2025-01-22 18:32:09 -05:00
13 lines
349 B
C++
13 lines
349 B
C++
#ifndef PORTALCOMMON_H
|
|
#define PORTALCOMMON_H
|
|
|
|
#include <QCoroTask>
|
|
#include <QDBusMessage>
|
|
#include <QWidget>
|
|
|
|
namespace PortalCommon {
|
|
void reparentWindow(QWidget* w, QString parentWindow);
|
|
void setupCoro(std::function<QCoro::Task<>(QDBusMessage)> coro, const QDBusMessage& message);
|
|
}; // namespace PortalCommon
|
|
|
|
#endif // PORTALCOMMON_H
|