mirror of
https://github.com/Alexays/Waybar.git
synced 2026-02-12 19:55:59 +00:00
11 lines
182 B
C++
11 lines
182 B
C++
#pragma once
|
|
|
|
namespace waybar {
|
|
class IModule {
|
|
public:
|
|
virtual ~IModule() {}
|
|
virtual auto update() -> void = 0;
|
|
virtual operator Gtk::Widget &() = 0;
|
|
};
|
|
}
|