diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-15 11:08:35 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-15 11:08:35 +0200 |
commit | ec8748a2ccb402b5cde5cb98b4bafd6bb341c370 (patch) | |
tree | 8cdb146b26cfa8e107191e974b359e3684bb4a23 /device.h | |
parent | 6ef11b70be58246c9f77fe3e319a4d9bb8dbb83f (diff) | |
download | vdr-ec8748a2ccb402b5cde5cb98b4bafd6bb341c370.tar.gz vdr-ec8748a2ccb402b5cde5cb98b4bafd6bb341c370.tar.bz2 |
A previous 'Transfer Mode' is now automatically re-started after a replay stops
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 1.17 2002/09/14 10:00:16 kls Exp $ + * $Id: device.h 1.18 2002/09/15 11:05:41 kls Exp $ */ #ifndef __DEVICE_H @@ -236,6 +236,7 @@ public: private: cPlayer *player; + bool playerDetached; protected: virtual bool SetPlayMode(ePlayMode PlayMode); // Sets the device into the given play mode. @@ -276,6 +277,8 @@ public: // Attaches the given player to this device. void Detach(cPlayer *Player); // Detaches the given player from this device. + bool PlayerDetached(void); + // Returns true if a player has been detached and resets the 'playerDetached' flag. // Receiver facilities |