summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/hciconfwrapper.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/hciconfwrapper.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/hciconfwrapper.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/hciconfwrapper.h b/noncore/net/opietooth/manager/hciconfwrapper.h
new file mode 100644
index 0000000..10738c0
--- a/dev/null
+++ b/noncore/net/opietooth/manager/hciconfwrapper.h
@@ -0,0 +1,30 @@
1#ifndef HCICONFWRAPPER_H
2#define HCICONFWRAPPER_H
3
4#include <qstring.h>
5
6namespace OpieTooth {
7
8 class HciConfWrapper {
9
10 public:
11 HciConfWrapper( const QString &fileName );
12 ~HciConfWrapper();
13
14 void setPinHelper( QString app );
15 void setName( QString name );
16 void setIscan( bool enable );
17 void setPscan( bool enable );
18 void setAuth( bool enable);
19 void setEncrypt( bool enable);
20
21 private:
22
23 void setValue(const QString &entry, const QString &value );
24
25 QString m_fileName;
26 };
27
28}
29
30#endif