##// END OF EJS Templates
New Catalogue API WIP, basic models and views implemented...
New Catalogue API WIP, basic models and views implemented Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1406:10c898bf875c
r1406:10c898bf875c
Show More
eventstreeview.h
18 lines | 363 B | text/x-c | CLexer
#ifndef EVENTSTREEVIEW_H
#define EVENTSTREEVIEW_H
#include <Catalogue/CatalogueController.h>
#include <QObject>
#include <QTreeView>
class EventsTreeView : public QTreeView
{
Q_OBJECT
public:
EventsTreeView(QWidget* parent = nullptr);
public slots:
void setEvents(std::vector<CatalogueController::Event_ptr> events);
};
#endif // EVENTSTREEVIEW_H