#ifndef LIGHT_ADDER_HPP_DEFINED #define LIGHT_ADDER_HPP_DEFINED #include #include #include #include namespace cx_light { class light_adder : public Gtk::Grid { public: light_adder(); ~light_adder() override; private: Gtk::Label *title_label; Gtk::Entry *title_entry; Gtk::Label *address_label; Gtk::Entry *address_entry; Gtk::Button *add_button; }; } #endif