- void set_actual_flow(float f) { actual_flow = f; }
- void set_open(bool b) { open = b; }
- void set_extra(float f) { extra = f; }
-
+ inline bool get_open() { return open; }
+ inline void set_actual_flow(float f) { actual_flow = f; }
+ inline void set_open(bool b) { open = b; }
+ inline void set_extra(float f) { extra = f; }
+ inline void set_color(const Gdk::Color &c) { color = c; }
+ inline Gdk::Color get_color() { return color; }