summaryrefslogtreecommitdiff
path: root/dvbdevice.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-12-15 15:36:02 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-12-15 15:36:02 +0100
commitc7849b14a7502f626f9cf806e998a711b28fb21b (patch)
tree2de1a4874285a8cc6d7217c9f58fdf6f277a19af /dvbdevice.h
parentd610d95e509c04fec7be22f4a7ae2fd308fa53a9 (diff)
downloadvdr-c7849b14a7502f626f9cf806e998a711b28fb21b.tar.gz
vdr-c7849b14a7502f626f9cf806e998a711b28fb21b.tar.bz2
Using 'Doxygen' to generate source code documentation
Diffstat (limited to 'dvbdevice.h')
-rw-r--r--dvbdevice.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/dvbdevice.h b/dvbdevice.h
index d135a298..335a6943 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.19 2002/12/07 14:44:29 kls Exp $
+ * $Id: dvbdevice.h 1.20 2002/12/15 14:45:29 kls Exp $
*/
#ifndef __DVBDEVICE_H
@@ -24,15 +24,18 @@
class cDvbTuner;
+/// The cDvbDevice implements a DVB device which can be accessed through the Linux DVB driver API.
+
class cDvbDevice : public cDevice {
friend class cDvbOsd;
private:
static bool Probe(const char *FileName);
- // Probes for existing DVB devices.
+ ///< Probes for existing DVB devices.
public:
static bool Initialize(void);
- // Initializes the DVB devices.
- // Must be called before accessing any DVB functions.
+ ///< Initializes the DVB devices.
+ ///< Must be called before accessing any DVB functions.
+ ///< \return True if any devices are available.
private:
fe_type_t frontendType;
int fd_osd, fd_audio, fd_video, fd_dvr;