21 lines
397 B
C++
21 lines
397 B
C++
//
|
|
// Created by selim on 13.11.22.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_VEHICLESLISTFACTORY_H
|
|
#define AUTOCAT_GNOME_VEHICLESLISTFACTORY_H
|
|
|
|
#include "../gtkpp/ListItemFactory.h"
|
|
|
|
class VehiclesListFactory: public gtkpp::ListItemFactory {
|
|
public:
|
|
VehiclesListFactory();
|
|
|
|
public:
|
|
GtkWidget* setup() override;
|
|
void bind(GtkWidget* widget) override;
|
|
};
|
|
|
|
|
|
#endif //AUTOCAT_GNOME_VEHICLESLISTFACTORY_H
|