summaryrefslogtreecommitdiff
path: root/dummy_player.h
diff options
context:
space:
mode:
authorphintuka <phintuka>2012-03-13 13:08:56 +0000
committerphintuka <phintuka>2012-03-13 13:08:56 +0000
commit553b5dd919912eab59ebe28036a44d0431bb4f58 (patch)
treed87961624fe75108e07edadc338cced5bcc0ede4 /dummy_player.h
parentb98b6a169bfde5e34a0e1ec1ca6cc17f6bc5fc03 (diff)
downloadxineliboutput-553b5dd919912eab59ebe28036a44d0431bb4f58.tar.gz
xineliboutput-553b5dd919912eab59ebe28036a44d0431bb4f58.tar.bz2
Removed unused files (dummy_player.[hc])
Diffstat (limited to 'dummy_player.h')
-rw-r--r--dummy_player.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/dummy_player.h b/dummy_player.h
deleted file mode 100644
index 9af28ba7..00000000
--- a/dummy_player.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * dummy_player.h: Player that does nothing (saves CPU time)
- *
- * See the main source file 'xineliboutput.c' for copyright information and
- * how to reach the author.
- *
- * $Id: dummy_player.h,v 1.1 2006-06-03 09:50:54 phintuka Exp $
- *
- */
-
-#ifndef __DUMMY_PLAYER_H
-#define __DUMMY_PLAYER_H
-
-#include <vdr/player.h>
-
-class cDummyPlayer;
-
-class cDummyPlayerControl : public cControl
-{
- private:
- static cDummyPlayer *m_Player;
- static cMutex m_Lock;
-
- static cDummyPlayer *OpenPlayer(void);
-
- public:
- cDummyPlayerControl(void);
- virtual ~cDummyPlayerControl();
-
- virtual void Show(void) {};
- virtual void Hide(void) {};
- virtual eOSState ProcessKey(eKeys Key);
-
- static void Close(void);
- static bool IsOpen(void) {return m_Player != NULL;};
-};
-
-#endif //__DUMMY_PLAYER_H
-