summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/blue-pin/pindlg.h
blob: b4f5ff8050dcb6a2ba9824b1c5ee7e45198d56ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26


#include <qdialog.h>

#include "pindlgbase.h"

namespace OpieTooth {
    class PinDlg : public PinDlgBase {
        Q_OBJECT
    public:
        PinDlg(const QString& text,
               const QString& mac,
               QWidget* parent = 0,
               const char* name= 0 );
        ~PinDlg();
        void setMac( const QString& );
        QString pin() const;
    private:
        void test( const QString& mac );
        QString m_mac;
protected slots:
        void accept();
    };


};