// // Created by selim on 13.11.22. // #ifndef AUTOCAT_GNOME_LISTITEMFACTORY_H #define AUTOCAT_GNOME_LISTITEMFACTORY_H #include namespace gtkpp { class ListItemFactory { private: GtkListItemFactory* _factory; public: ListItemFactory(); [[nodiscard]] GtkListItemFactory* gobj() const; public: virtual void setup(); }; } #endif //AUTOCAT_GNOME_LISTITEMFACTORY_H