summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/device.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/lib/device.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/device.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/noncore/net/opietooth/lib/device.h b/noncore/net/opietooth/lib/device.h
index d23f24c..010db40 100644
--- a/noncore/net/opietooth/lib/device.h
+++ b/noncore/net/opietooth/lib/device.h
@@ -8,2 +8,5 @@
8 8
9#include <sys/types.h>
10
11class KProcess;
9namespace OpieTooth { 12namespace OpieTooth {
@@ -63,2 +66,16 @@ namespace OpieTooth {
63 void device(const QString& device, bool up ); 66 void device(const QString& device, bool up );
67 private slots:
68 virtual void slotExited( KProcess* );
69 virtual void slotStdOut(KProcess*, char*, int );
70 virtual void slotStdErr(KProcess*, char*, int );
71 private:
72 class Private;
73 Private *d;
74 QString m_device;
75 bool m_attached:1;
76 KProcess* m_hci;
77 KProcess* m_process;
78 QString m_devId;
79 QString m_mode;
80 pid_t pid;
64 }; 81 };