2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-10-01 11:22:20 +00:00

Move NotificationServiceWatcher to glibmm

This commit is contained in:
Ilya Fedin
2021-03-01 22:40:09 +04:00
committed by John Preston
parent 82f92cffd3
commit d77df9905f
2 changed files with 42 additions and 24 deletions

View File

@@ -7,17 +7,17 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include <QtDBus/QDBusServiceWatcher>
namespace Platform {
namespace internal {
class NotificationServiceWatcher {
public:
NotificationServiceWatcher();
~NotificationServiceWatcher();
private:
QDBusServiceWatcher _dbusWatcher;
class Private;
const std::unique_ptr<Private> _private;
};
} // namespace internal