AutoCatGnome/gtkpp/ListItemFactory.h

27 lines
432 B
C++

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