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