NepomukDaemons
sopranoindexmanager.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 STRIGI_SOPRANO_INDEX_MANAGER_H
00021 #define STRIGI_SOPRANO_INDEX_MANAGER_H
00022
00023 #include <strigi/indexmanager.h>
00024
00025 class QString;
00026
00027 namespace Soprano {
00028 class Model;
00029 }
00030
00031 namespace Strigi {
00032
00033 class IndexReader;
00034 class IndexWriter;
00035
00036 namespace Soprano {
00037 class IndexManager : public Strigi::IndexManager
00038 {
00039 public:
00040 IndexManager( ::Soprano::Model* );
00041 ~IndexManager();
00042
00043 Strigi::IndexReader* indexReader();
00044 Strigi::IndexWriter* indexWriter();
00045
00046 private:
00047 class Private;
00048 Private* d;
00049 };
00050 }
00051 }
00052
00053 #endif