author | ulf69 <ulf69> | 2004-06-29 03:28:00 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-06-29 03:28:00 (UTC) |
commit | e3a70fed171a7b8d29ce0afb9e0f82fb98903091 (patch) (unidiff) | |
tree | 646663a22c123e126e1f2cc172ccc02c9bfcc412 /microkde/kresources | |
parent | 659b21aed6e02154a1b38ff16a09a432fe3953cb (diff) | |
download | kdepimpi-e3a70fed171a7b8d29ce0afb9e0f82fb98903091.zip kdepimpi-e3a70fed171a7b8d29ce0afb9e0f82fb98903091.tar.gz kdepimpi-e3a70fed171a7b8d29ce0afb9e0f82fb98903091.tar.bz2 |
resource now derived from KLibLoader, like in KDE
-rw-r--r-- | microkde/kresources/resource.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/microkde/kresources/resource.h b/microkde/kresources/resource.h index 7ff4f23..64e7424 100644 --- a/microkde/kresources/resource.h +++ b/microkde/kresources/resource.h | |||
@@ -30,17 +30,18 @@ | |||
30 | 30 | ||
31 | #include <qvaluelist.h> | 31 | #include <qvaluelist.h> |
32 | #include <qwidget.h> | 32 | #include <qwidget.h> |
33 | 33 | ||
34 | #include <qobject.h> | 34 | #include <qobject.h> |
35 | 35 | ||
36 | #include <klibloader.h> | ||
37 | |||
36 | class KConfig; | 38 | class KConfig; |
37 | 39 | ||
38 | namespace KRES { | 40 | namespace KRES { |
39 | 41 | ||
40 | class KLibFactory; | ||
41 | class ConfigWidget; | 42 | class ConfigWidget; |
42 | 43 | ||
43 | /** | 44 | /** |
44 | * @internal | 45 | * @internal |
45 | * @libdoc The KDE Resource library | 46 | * @libdoc The KDE Resource library |
46 | * | 47 | * |
@@ -360,14 +361,13 @@ class Resource : public QObject | |||
360 | 361 | ||
361 | private: | 362 | private: |
362 | class ResourcePrivate; | 363 | class ResourcePrivate; |
363 | ResourcePrivate *d; | 364 | ResourcePrivate *d; |
364 | }; | 365 | }; |
365 | 366 | ||
366 | //US class PluginFactoryBase : public KLibFactory | 367 | class PluginFactoryBase : public KLibFactory |
367 | class PluginFactoryBase | ||
368 | { | 368 | { |
369 | public: | 369 | public: |
370 | virtual Resource *resource( const KConfig *config ) = 0; | 370 | virtual Resource *resource( const KConfig *config ) = 0; |
371 | 371 | ||
372 | virtual ConfigWidget *configWidget( QWidget *parent ) = 0; | 372 | virtual ConfigWidget *configWidget( QWidget *parent ) = 0; |
373 | 373 | ||