Allow any module to implement signal handling

This commit is contained in:
Kauan Decarli
2023-01-21 21:57:28 -03:00
parent bc07a82579
commit de77787b60
2 changed files with 2 additions and 4 deletions

View File

@ -15,6 +15,7 @@ class AModule : public IModule {
bool enable_scroll = false);
virtual ~AModule();
virtual auto update() -> void;
virtual auto refresh(int) -> void {};
virtual operator Gtk::Widget &();
Glib::Dispatcher dp;