mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
13 lines
202 B
C++
13 lines
202 B
C++
#pragma once
|
|
|
|
#include <gtkmm.h>
|
|
|
|
namespace waybar {
|
|
class IModule {
|
|
public:
|
|
virtual ~IModule() {}
|
|
virtual auto update() -> void = 0;
|
|
virtual operator Gtk::Widget &() = 0;
|
|
};
|
|
}
|