// // Created by selim on 11.05.2022. // #ifndef AUTOCAT_GNOME_BUTTON_H #define AUTOCAT_GNOME_BUTTON_H #include "Widget.h" #include namespace gtkpp { class Button: public Widget { public: using Widget::Widget; Button(); void setTitle(const std::string& title); void setIconName(const std::string& name); }; } #endif //AUTOCAT_GNOME_BUTTON_H