summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/device.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/lib/device.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/device.h5
1 files changed, 4 insertions, 1 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
@@ -16,6 +16,7 @@ namespace OpieTooth {
* After attaching it hciconfig ups it
*/
class Device : public QObject {
+
Q_OBJECT
public:
@@ -26,8 +27,9 @@ namespace OpieTooth {
*
* @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
@@ -77,6 +79,7 @@ namespace OpieTooth {
OProcess* m_process;
QString m_devId;
QString m_mode;
+ QString m_speed;
pid_t pid;
QCString m_output;
};