summaryrefslogtreecommitdiff
path: root/service.h
diff options
context:
space:
mode:
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; }
};
//***************************************************************************