forked from quickshell/quickshell
18 lines
298 B
C++
18 lines
298 B
C++
#pragma once
|
|
|
|
#include <functional>
|
|
|
|
#include <qcontainerfwd.h>
|
|
#include <qdbusconnection.h>
|
|
#include <qobject.h>
|
|
|
|
namespace qs::dbus {
|
|
|
|
void tryLaunchService(
|
|
QObject* parent,
|
|
QDBusConnection& connection,
|
|
const QString& serviceName,
|
|
const std::function<void(bool)>& callback
|
|
);
|
|
|
|
}
|