summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/device.h
authorharlekin <harlekin>2003-01-16 19:50:06 (UTC)
committer harlekin <harlekin>2003-01-16 19:50:06 (UTC)
commit7957a2f100eb687e63cd3593097c5914539c7406 (patch) (side-by-side diff)
tree323aaf6d34669f523532d41385560c3894ed5c59 /noncore/net/opietooth/lib/device.h
parenteac64456fb43afe2200e4e545e1e4be3b4eb1bc8 (diff)
downloadopie-7957a2f100eb687e63cd3593097c5914539c7406.zip
opie-7957a2f100eb687e63cd3593097c5914539c7406.tar.gz
opie-7957a2f100eb687e63cd3593097c5914539c7406.tar.bz2
lib a bit more flexible for hciattach arguments
Diffstat (limited to 'noncore/net/opietooth/lib/device.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/device.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/noncore/net/opietooth/lib/device.h b/noncore/net/opietooth/lib/device.h
index c0e2658..ce7fccc 100644
--- a/noncore/net/opietooth/lib/device.h
+++ b/noncore/net/opietooth/lib/device.h
@@ -8,29 +8,31 @@
#include <sys/types.h>
class OProcess;
namespace OpieTooth {
/**
- * Device takes care of attaching serial
+ * Device takes care of attaching serial
* devices to the blueZ stack.
* After attaching it hciconfig ups it
*/
class Device : public QObject {
- Q_OBJECT
+
+ Q_OBJECT
public:
/**
* Brings up an device.
* Usage example: new Device(/dev/ttySB0, csr)
*
* @param &device QString the device name
* @param &mode QString the mode
+ * @param &speed QString the speed of the device, can be left blank
*/
- Device(const QString &device, const QString& mode);
+ Device(const QString &device, const QString& mode, const QString& speed);
/**
* unloads the device
*/
~Device();
@@ -74,12 +76,13 @@ namespace OpieTooth {
QString m_device;
bool m_attached:1;
OProcess* m_hci;
OProcess* m_process;
QString m_devId;
QString m_mode;
+ QString m_speed;
pid_t pid;
QCString m_output;
};
};
#endif