14 lines
351 B
C++
14 lines
351 B
C++
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "connection/dbus/messages.hpp"
|
|
#include "widgets/notification/baseNotification.hpp"
|
|
|
|
class NotificationWindow : public BaseNotification {
|
|
public:
|
|
NotificationWindow(uint64_t notificationId, std::shared_ptr<Gdk::Monitor> monitor, NotifyMessage message);
|
|
virtual ~NotificationWindow() = default;
|
|
|
|
};
|