summaryrefslogtreecommitdiffstats
blob: a3d5406de2e8da0cf4fe9800d2689b17efd80786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "EventModel.h"

namespace Swift {
EventModel::EventModel() {
	
}

EventModel::~EventModel() {
	
}

QVariant EventModel::data(const QModelIndex& /*index*/, int /*role*/) const {
	return QVariant();
}

int EventModel::rowCount(const QModelIndex& /*parent*/) const {
	return 0;
}

}