diff options
author | horchi <vdr@jwendel.de> | 2017-03-14 07:30:24 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-03-14 07:30:24 +0100 |
commit | 3345d4c5afa59a3a7f536fec61fb314bc00640c6 (patch) | |
tree | caeb9c570da706f088ddea3727d8a704b1810255 /service.h | |
parent | fc75b2cfa67c6b910293059614325c10a720f995 (diff) | |
download | vdr-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.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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; } }; //*************************************************************************** |