| 1234567891011121314151617181920 |
- #ifndef SOURCE_WELCOME_HPP_INCLUDED
- #define SOURCE_WELCOME_HPP_INCLUDED
- #include <gtkmm/box.h>
- #include <gtkmm/label.h>
- namespace cx_light {
- class welcome: public Gtk::Box {
- public:
- welcome();
- ~welcome() override;
- private:
- Gtk::Label *info;
- };
- }
- #endif
|