summaryrefslogtreecommitdiff
path: root/transfer.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-05-11 09:01:51 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-05-11 09:01:51 +0200
commit7a0054abbd50149874823cae3f234b00fd87ca70 (patch)
tree160768042c922b61ffc95b0e9838b4ff929666b6 /transfer.h
parent823945204cbf8e70c36ceab03ed6be37e5345338 (diff)
downloadvdr-7a0054abbd50149874823cae3f234b00fd87ca70.tar.gz
vdr-7a0054abbd50149874823cae3f234b00fd87ca70.tar.bz2
Implemented cDevice::ActualDevice()
Diffstat (limited to 'transfer.h')
-rw-r--r--transfer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/transfer.h b/transfer.h
index d94c85ab..5ecb96ad 100644
--- a/transfer.h
+++ b/transfer.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: transfer.h 1.3 2002/10/12 12:59:05 kls Exp $
+ * $Id: transfer.h 1.4 2003/05/11 08:48:36 kls Exp $
*/
#ifndef __TRANSFER_H
@@ -40,10 +40,12 @@ public:
class cTransferControl : public cControl {
private:
cTransfer *transfer;
+ static cDevice *receiverDevice;
public:
cTransferControl(cDevice *ReceiverDevice, int VPid, int APid1, int APid2, int DPid1, int DPid2);
~cTransferControl();
virtual void Hide(void) {}
+ static cDevice *ReceiverDevice(void) { return receiverDevice; }
};
#endif //__TRANSFER_H