author | zecke <zecke> | 2002-05-30 19:49:01 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-05-30 19:49:01 (UTC) |
commit | 6a7ea9fd0496d48f05e78ad4afc527e01568eb92 (patch) (side-by-side diff) | |
tree | 3ac818c1d557a9a811fd5d7044a5a7d5bf0e89e1 | |
parent | c6badea27eb3057c6971f3a756f4bef17996cfa9 (diff) | |
download | opie-6a7ea9fd0496d48f05e78ad4afc527e01568eb92.zip opie-6a7ea9fd0496d48f05e78ad4afc527e01568eb92.tar.gz opie-6a7ea9fd0496d48f05e78ad4afc527e01568eb92.tar.bz2 |
API doc update
-rw-r--r-- | noncore/net/opietooth/lib/device.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/net/opietooth/lib/device.h b/noncore/net/opietooth/lib/device.h index b2d277e..d6cf049 100644 --- a/noncore/net/opietooth/lib/device.h +++ b/noncore/net/opietooth/lib/device.h @@ -2,17 +2,21 @@ #ifndef OpieToothDevice_H #define OpieToothDevice_H #include <qobject.h> #include <qstring.h> #include <qvaluelist.h> namespace OpieTooth { - + /** + * Device takes care of attaching serial + * devices to the blueZ stack. + * After attaching it hciconfig ups it + */ class Device : public QObject { Q_OBJECT public: /** * Brings up an device. * Usage example: new Device(/dev/ttySB0, csr) @@ -35,17 +39,17 @@ namespace OpieTooth { /** * detach the device */ void detach(); /** * Is the device loaded? * @return bool, if the device is loaded - + */ bool isLoaded()const; /** * Returns the device name * @return QString, the device name */ QString devName()const ; // hci0 |