This commit is contained in:
Alex
2018-08-20 14:50:45 +02:00
committed by GitHub
parent b7e3d10fb7
commit 49232eed8d
30 changed files with 261 additions and 235 deletions

View File

@ -7,13 +7,13 @@ namespace waybar {
class ALabel : public IModule {
public:
ALabel(Json::Value);
ALabel(const Json::Value&);
virtual ~ALabel() = default;
virtual auto update() -> void;
virtual operator Gtk::Widget &();
protected:
Gtk::Label label_;
Json::Value config_;
const Json::Value& config_;
};
}