summaryrefslogtreecommitdiff
path: root/device.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-06-02 13:28:42 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2011-06-02 13:28:42 +0200
commite572cbda47df902ae7d83313fd01483ce2d3193f (patch)
tree55a020216bff73ad3541089eabdd331f81ff5520 /device.c
parent40278ec12131f07fdc15556511f689455e2b7931 (diff)
downloadvdr-e572cbda47df902ae7d83313fd01483ce2d3193f.tar.gz
vdr-e572cbda47df902ae7d83313fd01483ce2d3193f.tar.bz2
Implemented signal strength and quality handling
Diffstat (limited to 'device.c')
-rw-r--r--device.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/device.c b/device.c
index 854ee677..07599936 100644
--- a/device.c
+++ b/device.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.c 2.40 2011/05/22 09:42:57 kls Exp $
+ * $Id: device.c 2.41 2011/06/02 13:14:16 kls Exp $
*/
#include "device.h"
@@ -618,6 +618,16 @@ int cDevice::NumProvidedSystems(void) const
return 0;
}
+int cDevice::SignalStrength(void) const
+{
+ return -1;
+}
+
+int cDevice::SignalQuality(void) const
+{
+ return -1;
+}
+
const cChannel *cDevice::GetCurrentlyTunedTransponder(void) const
{
return NULL;