Version 0.7-0
[vicar] / src / vicar-lib / src / gconfutility.h
diff --git a/src/vicar-lib/src/gconfutility.h b/src/vicar-lib/src/gconfutility.h
deleted file mode 100755 (executable)
index 8106833..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
-@version: 0.6
-@author: Sudheer K. <scifi1947 at gmail.com>
-@license: GNU General Public License
-*/
-
-#ifndef GCONFUTILITY_H
-#define GCONFUTILITY_H
-
-#include <QObject>
-#include <gconf/gconf-client.h>
-
-#define APPLICATION_NAME "vicar"
-#define GCONF_DIR "/apps/Maemo/" APPLICATION_NAME "/"
-
-class GConfUtility : public QObject
- {
-Q_OBJECT
-public:
-    GConfUtility(QObject *parent = 0);
-    ~GConfUtility();
-    void setGconfValueString(QString strKey,QString strValue);
-    QString getGconfValueString(QString strKey);
-
-    void setGconfValueBoolean(QString strKey,bool boolValue);
-    bool getGconfValueBoolean(QString strKey);
-
-    void setGconfValueInteger(QString strKey,int intValue);
-    int getGconfValueInteger(QString strKey);
-
-private:
-     GConfClient *gconfClient;
-};
-
-#endif // GCONFUTILITY_H