mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-12 06:02:30 +02:00
15 lines
193 B
C++
15 lines
193 B
C++
#pragma once
|
|
|
|
#include <gtkmm.h>
|
|
|
|
namespace waybar {
|
|
|
|
class IModule {
|
|
public:
|
|
virtual ~IModule() {}
|
|
virtual auto update() -> void = 0;
|
|
virtual operator Gtk::Widget &() = 0;
|
|
};
|
|
|
|
}
|