summaryrefslogtreecommitdiffstats
blob: a2343ed9b36e54cce4491cb49d21ba553b012585 (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;
}

}