Baloo

firstrunindexer.h
1/*
2 SPDX-FileCopyrightText: 2015 Vishesh Handa <vhanda@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-or-later
5*/
6
7#ifndef BALOO_FIRSTRUNINDEXER_H
8#define BALOO_FIRSTRUNINDEXER_H
9
10#include <QRunnable>
11#include <QObject>
12#include <QStringList>
13
14namespace Baloo {
15
16class Database;
17class FileIndexerConfig;
18
19class FirstRunIndexer : public QObject, public QRunnable
20{
22public:
23 FirstRunIndexer(Database* db, FileIndexerConfig* config, const QStringList& folders);
24
25 void run() override;
26
28 void done();
29
30private:
31 Database* m_db;
32 FileIndexerConfig* m_config;
33
34 QStringList m_folders;
35};
36}
37
38#endif // BALOO_FIRSTRUNINDEXER_H
Implements storage for docIds without any associated data Instantiated for:
Definition coding.cpp:11
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:16 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.