summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/hciconfwrapper.h
Side-by-side diff
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 @@
+#ifndef HCICONFWRAPPER_H
+#define HCICONFWRAPPER_H
+
+#include <qstring.h>
+
+namespace OpieTooth {
+
+ class HciConfWrapper {
+
+ public:
+ HciConfWrapper( const QString &fileName );
+ ~HciConfWrapper();
+
+ void setPinHelper( QString app );
+ void setName( QString name );
+ void setIscan( bool enable );
+ void setPscan( bool enable );
+ void setAuth( bool enable);
+ void setEncrypt( bool enable);
+
+ private:
+
+ void setValue(const QString &entry, const QString &value );
+
+ QString m_fileName;
+ };
+
+}
+
+#endif