Diffstat (limited to 'microkde/kresources/managerimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | microkde/kresources/managerimpl.h | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/microkde/kresources/managerimpl.h b/microkde/kresources/managerimpl.h index a049bcc..0425279 100644 --- a/microkde/kresources/managerimpl.h +++ b/microkde/kresources/managerimpl.h @@ -23,2 +23,9 @@ +/* +Enhanced Version of the file for platform independent KDE tools. +Copyright (c) 2004 Ulf Schenk + +$Id$ +*/ + #ifndef KRESOURCES_MANAGERIMPL_H @@ -60,3 +67,3 @@ class ManagerImpl : public QObject public: - ManagerImpl( const QString &family ); + ManagerImpl( const QString &family, bool syncable); ~ManagerImpl(); @@ -85,2 +92,7 @@ class ManagerImpl : public QObject + /** + Return true, if the manager manages syncable resources. + */ + bool manageSyncable() const; + public slots: @@ -93,6 +105,6 @@ class ManagerImpl : public QObject void createStandardConfig(); - + Resource *readResourceConfig( const QString& identifier, bool checkActive ); void writeResourceConfig( Resource *resource, bool checkActive ); - + void removeResource( Resource *resource ); @@ -102,2 +114,3 @@ class ManagerImpl : public QObject QString mFamily; + bool mSyncable; KConfig *mConfig; |