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.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/hciconfwrapper.h b/noncore/net/opietooth/manager/hciconfwrapper.h
index 0c4b290..5bf483c 100644
--- a/noncore/net/opietooth/manager/hciconfwrapper.h
+++ b/noncore/net/opietooth/manager/hciconfwrapper.h
@@ -1,34 +1,44 @@
+/* $Id$ */
+/* hcid.conf parser */
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
#ifndef HCICONFWRAPPER_H
#define HCICONFWRAPPER_H
#include <qstring.h>
#include <qstringlist.h>
namespace OpieTooth {
class HciConfWrapper {
public:
HciConfWrapper( const QString &fileName );
~HciConfWrapper();
void load();
void save();
void setPinHelper( const QString& app );
void setName( const 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;
QStringList m_file;
};
}
#endif