changes requested

This commit is contained in:
Marc
2020-02-23 23:09:05 +01:00
parent 9abe1e2790
commit dd7d78cd60
4 changed files with 3 additions and 5 deletions

View File

@ -9,12 +9,11 @@ class Rfkill {
Rfkill(enum rfkill_type rfkill_type);
~Rfkill() = default;
void waitForEvent();
int getState() const;
bool getState() const;
private:
enum rfkill_type rfkill_type_;
int state_ = 0;
int prev_state_ = 0;
};
} // namespace waybar::util