Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / runtime / nepomuk / strigibackend / sopranoindexmanager.h
blob71f86a809fea9b995c458561c2198908ee15f6df
1 /*
2 $Id: sourceheader 511311 2006-02-19 14:51:05Z trueg $
4 This file is part of the Strigi project.
5 Copyright (C) 2007 Sebastian Trueg <trueg@kde.org>
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of
10 the License, or (at your option) any later version.
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this library; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.
23 #ifndef STRIGI_SOPRANO_INDEX_MANAGER_H
24 #define STRIGI_SOPRANO_INDEX_MANAGER_H
26 #include <strigi/indexmanager.h>
28 class QString;
30 namespace Soprano {
31 class Model;
34 namespace Strigi {
36 class IndexReader;
37 class IndexWriter;
39 namespace Soprano {
40 class IndexManager : public Strigi::IndexManager
42 public:
43 IndexManager( ::Soprano::Model*, const QString& );
44 ~IndexManager();
46 Strigi::IndexReader* indexReader();
47 Strigi::IndexWriter* indexWriter();
49 private:
50 class Private;
51 Private* d;
56 #endif