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 Strigi {
00028
00029 class IndexReader;
00030 class IndexWriter;
00031
00032 namespace Soprano {
00033 class IndexManager : public Strigi::IndexManager
00034 {
00035 public:
00036 IndexManager();
00037 ~IndexManager();
00038
00039 Strigi::IndexReader* indexReader();
00040 Strigi::IndexWriter* indexWriter();
00041
00042 private:
00043 class Private;
00044 Private* d;
00045 };
00046 }
00047 }
00048
00049 #endif