22 lines
372 B
C++
22 lines
372 B
C++
//
|
|
// Created by selim on 13.11.22.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_LISTVIEW_H
|
|
#define AUTOCAT_GNOME_LISTVIEW_H
|
|
|
|
#include "Widget.h"
|
|
#include "SelectionModel.h"
|
|
#include "ListItemFactory.h"
|
|
|
|
namespace gtkpp {
|
|
|
|
class ListView: public Widget {
|
|
public:
|
|
ListView(SelectionModel selectionModel, ListItemFactory* factory);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //AUTOCAT_GNOME_LISTVIEW_H
|