1 #ifndef WIDGET_SPACING_HPP
2 #define WIDGET_SPACING_HPP
3 
4 #include "../widget.hpp"
5 
6 class WayfireSpacing : public WayfireWidget
7 {
8     Gtk::HBox box;
9     public:
10         WayfireSpacing(int pixels);
11 
12         virtual void init(Gtk::HBox *container);
~WayfireSpacing()13         virtual ~WayfireSpacing() {}
14 };
15 
16 
17 #endif /* end of include guard: WIDGET_SPACING_HPP */
18 
19