summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/blue-pin/pindlg.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/blue-pin/pindlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/blue-pin/pindlg.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/noncore/net/opietooth/blue-pin/pindlg.h b/noncore/net/opietooth/blue-pin/pindlg.h
new file mode 100644
index 0000000..b4f5ff8
--- a/dev/null
+++ b/noncore/net/opietooth/blue-pin/pindlg.h
@@ -0,0 +1,26 @@
1
2
3#include <qdialog.h>
4
5#include "pindlgbase.h"
6
7namespace OpieTooth {
8 class PinDlg : public PinDlgBase {
9 Q_OBJECT
10 public:
11 PinDlg(const QString& text,
12 const QString& mac,
13 QWidget* parent = 0,
14 const char* name= 0 );
15 ~PinDlg();
16 void setMac( const QString& );
17 QString pin() const;
18 private:
19 void test( const QString& mac );
20 QString m_mac;
21protected slots:
22 void accept();
23 };
24
25
26};