diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-08-25 09:36:09 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-08-25 09:36:09 +0200 |
commit | c6ed4da7a0e8d9bf5664ba2c4282e3c6cb6d7932 (patch) | |
tree | aef8dad67f4e01f6655e0e189af7af1576e038af /dvbdevice.h | |
parent | df5be87dc3aa8a94990dcc387729c551fb14a3db (diff) | |
download | vdr-c6ed4da7a0e8d9bf5664ba2c4282e3c6cb6d7932.tar.gz vdr-c6ed4da7a0e8d9bf5664ba2c4282e3c6cb6d7932.tar.bz2 |
Added cDevice::NewOsd() to allow a derived cDevice class to implement its own OSD capabilities
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index ece1b454..a338399b 100644 --- a/dvbdevice.h +++ b/dvbdevice.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.h 1.5 2002/08/16 08:53:30 kls Exp $ + * $Id: dvbdevice.h 1.6 2002/08/25 09:19:34 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -48,6 +48,11 @@ public: virtual bool CanBeReUsed(int Frequency, int Vpid); virtual bool HasDecoder(void) const; +// OSD facilities + +public: + cOsdBase *NewOsd(int x, int y); + // Channel facilities private: |