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) (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
@@ -7,4 +7,7 @@
#include <qvaluelist.h>
+#include <sys/types.h>
+
+class KProcess;
namespace OpieTooth {
/**
@@ -62,4 +65,18 @@ namespace OpieTooth {
*/
void device(const QString& device, bool up );
+ private slots:
+ virtual void slotExited( KProcess* );
+ virtual void slotStdOut(KProcess*, char*, int );
+ virtual void slotStdErr(KProcess*, char*, int );
+ private:
+ class Private;
+ Private *d;
+ QString m_device;
+ bool m_attached:1;
+ KProcess* m_hci;
+ KProcess* m_process;
+ QString m_devId;
+ QString m_mode;
+ pid_t pid;
};
};