NepomukDaemons
ontologyloader.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _NEPOMUK_SERVER_ONTOLOGY_LOADER_H_
00020 #define _NEPOMUK_SERVER_ONTOLOGY_LOADER_H_
00021
00022 #include <Nepomuk/Service>
00023 #include <QtCore/QUrl>
00024
00025 namespace Soprano {
00026 class Model;
00027 }
00028
00029
00030 namespace Nepomuk {
00031 class OntologyLoader : public Nepomuk::Service
00032 {
00033 Q_OBJECT
00034 Q_CLASSINFO( "D-Bus Interface", "org.kde.nepomuk.OntologyManager" )
00035
00036 public:
00037 OntologyLoader( QObject* parent = 0, const QList<QVariant>& args = QList<QVariant>() );
00038 ~OntologyLoader();
00039
00040 public Q_SLOTS:
00047 Q_SCRIPTABLE void updateAllOntologies();
00048
00049
00050
00051
00052 private Q_SLOTS:
00053
00054 void updateNextOntology();
00055
00056 private:
00057 class Private;
00058 Private* const d;
00059 };
00060 }
00061
00062 #endif