summaryrefslogtreecommitdiff
path: root/status.h
diff options
context:
space:
mode:
Diffstat (limited to 'status.h')
-rw-r--r--status.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/status.h b/status.h
new file mode 100644
index 0000000..a67e3e3
--- /dev/null
+++ b/status.h
@@ -0,0 +1,26 @@
+/*
+ * $Id: status.h,v 1.2 2004/06/12 19:17:06 lordjaxom Exp $
+ */
+
+#ifndef VDR_TEXT2SKIN_STATUS_H
+#define VDR_TEXT2SKIN_STATUS_H
+
+#include "common.h"
+#include <vdr/status.h>
+
+class cText2SkinStatus: public cStatus {
+private:
+ static cText2SkinStatus mStatus;
+
+ eReplayMode mReplayMode;
+
+protected:
+ cText2SkinStatus(void);
+
+ virtual void Replaying(const cControl *Control, const char *Name);
+
+public:
+ static eReplayMode ReplayMode(void) { return mStatus.mReplayMode; }
+};
+
+#endif // VDR_TEXT2SKIN_STATUS_H