-rw-r--r-- | microkde/kidmanager.cpp | 10 | ||||
-rw-r--r-- | microkde/kidmanager.h | 19 | ||||
-rw-r--r-- | microkde/microkdeE.pro | 6 |
3 files changed, 33 insertions, 2 deletions
diff --git a/microkde/kidmanager.cpp b/microkde/kidmanager.cpp new file mode 100644 index 0000000..ce6184a --- a/dev/null +++ b/microkde/kidmanager.cpp | |||
@@ -0,0 +1,10 @@ | |||
1 | #include "kidmanager.h" | ||
2 | |||
3 | KIdManager::KIdManager() | ||
4 | { | ||
5 | |||
6 | } | ||
7 | QString KIdManager::addId (const QString& idString,const QString& id,const QString& idvalue ) | ||
8 | { | ||
9 | |||
10 | } | ||
diff --git a/microkde/kidmanager.h b/microkde/kidmanager.h new file mode 100644 index 0000000..9d79b2b --- a/dev/null +++ b/microkde/kidmanager.h | |||
@@ -0,0 +1,19 @@ | |||
1 | #ifndef MINIKDE_KIDMANAGER_H | ||
2 | #define MINIKDE_KIDMANAGER_H | ||
3 | |||
4 | #include <qstring.h> | ||
5 | |||
6 | #include <qobject.h> | ||
7 | class KIdManager : public QObject | ||
8 | { | ||
9 | Q_OBJECT | ||
10 | public: | ||
11 | KIdManager( ); | ||
12 | static QString addId (const QString& idString,const QString& id,const QString& idvalue ) ; | ||
13 | private: | ||
14 | |||
15 | private slots: | ||
16 | }; | ||
17 | |||
18 | |||
19 | #endif | ||
diff --git a/microkde/microkdeE.pro b/microkde/microkdeE.pro index 06b288b..fc80c03 100644 --- a/microkde/microkdeE.pro +++ b/microkde/microkdeE.pro | |||
@@ -98,13 +98,14 @@ osmartpointer.h \ | |||
98 | kdecore/kprefs.h \ | 98 | kdecore/kprefs.h \ |
99 | kdecore/ksharedptr.h \ | 99 | kdecore/ksharedptr.h \ |
100 | kdecore/kshell.h \ | 100 | kdecore/kshell.h \ |
101 | kdecore/kstandarddirs.h \ | 101 | kdecore/kstandarddirs.h \ |
102 | kdecore/kstringhandler.h \ | 102 | kdecore/kstringhandler.h \ |
103 | kdecore/kshortcut.h \ | 103 | kdecore/kshortcut.h \ |
104 | kutils/kcmultidialog.h | 104 | kutils/kcmultidialog.h \ |
105 | kidmanager.h | ||
105 | 106 | ||
106 | 107 | ||
107 | 108 | ||
108 | 109 | ||
109 | SOURCES = \ | 110 | SOURCES = \ |
110 | KDGanttMinimizeSplitter.cpp \ | 111 | KDGanttMinimizeSplitter.cpp \ |
@@ -170,8 +171,9 @@ oprocess.cpp \ | |||
170 | kresources/factory.cpp \ | 171 | kresources/factory.cpp \ |
171 | kresources/kcmkresources.cpp \ | 172 | kresources/kcmkresources.cpp \ |
172 | kresources/managerimpl.cpp \ | 173 | kresources/managerimpl.cpp \ |
173 | kresources/resource.cpp \ | 174 | kresources/resource.cpp \ |
174 | kresources/selectdialog.cpp \ | 175 | kresources/selectdialog.cpp \ |
175 | kresources/syncwidget.cpp \ | 176 | kresources/syncwidget.cpp \ |
176 | kutils/kcmultidialog.cpp | 177 | kutils/kcmultidialog.cpp \ |
178 | kidmanager.cpp | ||
177 | 179 | ||