summaryrefslogtreecommitdiff
path: root/service.h
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2017-03-14 07:30:24 +0100
committerhorchi <vdr@jwendel.de>2017-03-14 07:30:24 +0100
commit3345d4c5afa59a3a7f536fec61fb314bc00640c6 (patch)
treecaeb9c570da706f088ddea3727d8a704b1810255 /service.h
parentfc75b2cfa67c6b910293059614325c10a720f995 (diff)
downloadvdr-plugin-epg2vdr-3345d4c5afa59a3a7f536fec61fb314bc00640c6.tar.gz
vdr-plugin-epg2vdr-3345d4c5afa59a3a7f536fec61fb314bc00640c6.tar.bz2
2017-03-146: version 1.1.47 (horchi)\n - added: Started extended event interface for skins\n\n1.1.47
Diffstat (limited to 'service.h')
-rw-r--r--service.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/service.h b/service.h
index 7651316..8e40f75 100644
--- a/service.h
+++ b/service.h
@@ -22,13 +22,13 @@ class cEpgEvent_Interface_V1 : public cEvent
public:
cEpgEvent_Interface_V1(tEventID EventID)
- : cEvent(EventID) {}
+ : cEvent(EventID) { imageCount = 0; }
- // #TODO ... getter
+ int getImageCount() const { return imageCount; }
protected:
- // #TODO ... attributes
+ int imageCount;
};
//***************************************************************************
@@ -99,7 +99,8 @@ class cEpgEvent : public cEpgEvent_Interface_V1
cEpgEvent(tEventID EventID);
virtual ~cEpgEvent() {}
- // #TODO ... setter
+ bool Read(FILE *f);
+ void setImageCount(int count) { imageCount = count; }
};
//***************************************************************************