diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-01-06 14:44:27 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-01-06 14:44:27 +0100 |
commit | 4e15f6d658139fca773b76088bf1523839c20ffd (patch) | |
tree | 6d51dd4546800274eeddace2069fe08837186076 /device.h | |
parent | 43b582a04d3b77c0f0f92284bdccbbad190f9d41 (diff) | |
download | vdr-4e15f6d658139fca773b76088bf1523839c20ffd.tar.gz vdr-4e15f6d658139fca773b76088bf1523839c20ffd.tar.bz2 |
Implemented 'Link Layer' based CAM support
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -4,12 +4,13 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 1.28 2002/12/15 14:40:11 kls Exp $ + * $Id: device.h 1.29 2003/01/03 15:43:48 kls Exp $ */ #ifndef __DEVICE_H #define __DEVICE_H +#include "ci.h" #include "thread.h" #include "tools.h" @@ -211,6 +212,13 @@ protected: ///< Type indicates some special types of PIDs, which the device may ///< need to set in a specific way. +// Common Interface facilities: + +protected: + cCiHandler *ciHandler; +public: + cCiHandler *CiHandler(void) { return ciHandler; } + // Image Grab facilities public: |