Baloo

indexentry.h
1/*
2 This file is part of the KDE Baloo Project
3 SPDX-FileCopyrightText: 2015 Pinak Ahuja <pinak.ahuja@gmail.com>
4 SPDX-FileCopyrightText: 2015 Vishesh Handa <vhanda@kde.org>
5
6 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7*/
8
9#ifndef BALOO_INDEXENTRY_H
10#define BALOO_INDEXENTRY_H
11
12#include <QTextStream>
13
14#include "database.h"
15#include "transaction.h"
16
17namespace Baloo
18{
19
20class IndexEntry : public Transaction
21{
22public:
23 IndexEntry(const Database &db, QTextStream &out);
24 IndexEntry(Database *db, QTextStream &out);
25 bool indexFileNow(const QString &fileName);
26
27private:
28 QTextStream &m_out;
29};
30}
31
32#endif // BALOO_INDEXENTRY_H
Implements storage for docIds without any associated data Instantiated for:
Definition coding.cpp:11
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Sat Dec 21 2024 16:56:58 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.