diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-04 14:58:24 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-04 14:58:24 +0100 |
commit | d5c739790b51c1503bad54b2edf384f359ed2a3b (patch) | |
tree | 87b9c108757e97365264bb40ebb0f96bb926f687 /device.h | |
parent | 8831fe304fd7992c4017b434d3d6e70478b34872 (diff) | |
download | vdr-d5c739790b51c1503bad54b2edf384f359ed2a3b.tar.gz vdr-d5c739790b51c1503bad54b2edf384f359ed2a3b.tar.bz2 |
Implemented cDevice::Transferring()
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 4 |
1 files changed, 3 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.71 2006/02/04 10:22:54 kls Exp $ + * $Id: device.h 1.72 2006/02/04 14:22:08 kls Exp $ */ #ifndef __DEVICE_H @@ -484,6 +484,8 @@ public: ///< guaranteed to always receive complete PES packets. bool Replaying(void) const; ///< Returns true if we are currently replaying. + bool Transferring(void) const; + ///< Returns true if we are currently in Transfer Mode. void StopReplay(void); ///< Stops the current replay session (if any). bool AttachPlayer(cPlayer *Player); |