diff options
author | anbr <vdr07@deltab.de> | 2010-10-23 19:38:08 +0200 |
---|---|---|
committer | anbr <vdr07@deltab.de> | 2010-10-23 19:38:08 +0200 |
commit | b7f95989e45ea6a0d6fc839ae628f5b2bc6f8b32 (patch) | |
tree | 070795528042943665d5c806050681f571ee5da9 /vfd.h | |
parent | 4fb594582ea4587a83328b3e9964fde3c5bc36c1 (diff) | |
download | vdr-plugin-targavfd-b7f95989e45ea6a0d6fc839ae628f5b2bc6f8b32.tar.gz vdr-plugin-targavfd-b7f95989e45ea6a0d6fc839ae628f5b2bc6f8b32.tar.bz2 |
blank the device completely by svdrp off
Diffstat (limited to 'vfd.h')
-rw-r--r-- | vfd.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -55,6 +55,7 @@ class cVFDQueue : public std::queue<byte> { public: cVFDQueue(); virtual ~cVFDQueue(); +protected: virtual bool open(); virtual void close(); virtual bool isopen() const { return hid != 0; } @@ -84,7 +85,7 @@ public: virtual ~cVFD(); virtual bool open(); - virtual void close (); + virtual void close(); void clear (); |