summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/device.h
authorzecke <zecke>2002-06-01 12:36:34 (UTC)
committer zecke <zecke>2002-06-01 12:36:34 (UTC)
commitf386b95e1c9763bb9c5ea404c0824b45a744e151 (patch) (unidiff)
treefb64a35e3824e3b50b93b1289a0feed50a1d3b5f /noncore/net/opietooth/lib/device.h
parent075f2ae74f328581ec0db05d633961f3baa5ed36 (diff)
downloadopie-f386b95e1c9763bb9c5ea404c0824b45a744e151.zip
opie-f386b95e1c9763bb9c5ea404c0824b45a744e151.tar.gz
opie-f386b95e1c9763bb9c5ea404c0824b45a744e151.tar.bz2
attaching and detaching
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 };