Nepomuk
desktopontologyloader.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
00020 #ifndef _NEPOMUK_DESKTOP_ONTOLOGY_LOADER_H_
00021 #define _NEPOMUK_DESKTOP_ONTOLOGY_LOADER_H_
00022
00023 #include "ontologyloader.h"
00024 #include "nepomuk_export.h"
00025
00026 #include <QtCore/QUrl>
00027 #include <QtCore/QList>
00028
00029 namespace Nepomuk {
00039 class KDE_DEPRECATED NEPOMUK_EXPORT DesktopOntologyLoader : public OntologyLoader
00040 {
00041 public:
00042 DesktopOntologyLoader();
00043 ~DesktopOntologyLoader();
00044
00049 QList<QUrl> allOntologies();
00050
00054 QList<Soprano::Statement> loadOntology( const QUrl& url );
00055
00056 private:
00057 class Private;
00058 Private* const d;
00059 };
00060 }
00061
00062 #endif