buttons.hpp 228 B

12345678910111213141516
  1. #ifndef BUTTONS_HPP_INCLUDED
  2. #define BUTTONS_HPP_INCLUDED
  3. #include <gtkmm.h>
  4. namespace cx_light {
  5. class add_light_button : public Gtk::Button {
  6. public:
  7. add_light_button();
  8. void on_clicked();
  9. };
  10. }
  11. #endif