diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-06-23 12:59:58 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-06-23 12:59:58 +0200 |
commit | 26981fd7b148ee943d8032b46f83a7409e02e3be (patch) | |
tree | 08393b0336d2a39d891859b4663d0f9996470b16 /transfer.h | |
parent | bd26fdf362d7daf420090b4f811bdb1fad45ea24 (diff) | |
download | vdr-26981fd7b148ee943d8032b46f83a7409e02e3be.tar.gz vdr-26981fd7b148ee943d8032b46f83a7409e02e3be.tar.bz2 |
Switched handling 'Transfer Mode' to the new cPlayer/cControl structures
Diffstat (limited to 'transfer.h')
-rw-r--r-- | transfer.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: transfer.h 1.1 2002/06/22 13:38:23 kls Exp $ + * $Id: transfer.h 1.2 2002/06/23 12:26:24 kls Exp $ */ #ifndef __TRANSFER_H @@ -32,4 +32,13 @@ public: void SetAudioPid(int APid); }; +class cTransferControl : public cControl { +private: + cTransfer *transfer; +public: + cTransferControl(cDevice *ReceiverDevice, int VPid, int APid1, int APid2, int DPid1, int DPid2); + ~cTransferControl(); + virtual void Hide(void) {} + }; + #endif //__TRANSFER_H |