NepomukDaemons
strigiservice.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_STRIGI_SERVICE_H_
00020 #define _NEPOMUK_STRIGI_SERVICE_H_
00021
00022 #include <Nepomuk/Service>
00023 #include <QtCore/QTimer>
00024
00025 namespace Strigi {
00026 class IndexManager;
00027 }
00028
00029 namespace Nepomuk {
00030
00031 class IndexScheduler;
00032
00036 class StrigiService : public Nepomuk::Service
00037 {
00038 Q_OBJECT
00039
00040 public:
00041 StrigiService( QObject* parent = 0, const QList<QVariant>& args = QList<QVariant>() );
00042 ~StrigiService();
00043
00044 private:
00045 void updateStrigiConfig();
00046
00047 Strigi::IndexManager* m_indexManager;
00048 IndexScheduler* m_indexScheduler;
00049 };
00050 }
00051
00052 #endif