blob: a67e3e3386592a41a4ea7cf9cb9003de17eefbea (
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
|
/*
* $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
|