summaryrefslogtreecommitdiff
path: root/epghandler.c
blob: a467426862b1801ec0fd80d1f7bf06e1feafb940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * cEEpgHandler.c
 *
 *  Created on: 11.3.2012
 *      Author: d.petrovski
 */

#include "epghandler.h"

cEEpgHandler::cEEpgHandler() {
	// TODO Auto-generated constructor stub

}

cEEpgHandler::~cEEpgHandler() {
	// TODO Auto-generated destructor stub
}

bool cEEpgHandler::HandleEitEvent(cSchedule* Schedule,
		const SI::EIT::Event* EitEvent, uchar TableID, uchar Version) {
	return true;
}

bool cEEpgHandler::SetEventID(cEvent* Event, tEventID EventID) {
}

bool cEEpgHandler::SetTitle(cEvent* Event, const char* Title) {
}

bool cEEpgHandler::SetShortText(cEvent* Event, const char* ShortText) {
}

bool cEEpgHandler::SetDescription(cEvent* Event, const char* Description) {
}

bool cEEpgHandler::SetContents(cEvent* Event, uchar* Contents) {
}

bool cEEpgHandler::SetParentalRating(cEvent* Event, int ParentalRating) {
}

bool cEEpgHandler::SetStartTime(cEvent* Event, time_t StartTime) {
}

bool cEEpgHandler::SetDuration(cEvent* Event, int Duration) {
}

bool cEEpgHandler::SetVps(cEvent* Event, time_t Vps) {
}

bool cEEpgHandler::HandleEvent(cEvent* Event) {
}

bool cEEpgHandler::SortSchedule(cSchedule* Schedule) {
}

bool cEEpgHandler::DropOutdated(cSchedule* Schedule, time_t SegmentStart,
		time_t SegmentEnd, uchar TableID, uchar Version) {
}