Akonadi

agentsearchengine.h
1/*
2 SPDX-FileCopyrightText: 2010 Volker Krause <vkrause@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "abstractsearchengine.h"
10
11namespace Akonadi
12{
13namespace Server
14{
15/** Search engine for distributing searches to agents. */
17{
18public:
19 void addSearch(const Collection &collection) override;
20 void removeSearch(qint64 id) override;
21};
22
23} // namespace Server
24} // namespace Akonadi
Represents a collection of PIM items.
Definition collection.h:62
Abstract interface for search engines.
Search engine for distributing searches to agents.
void addSearch(const Collection &collection) override
Adds the given collection to the search.
void removeSearch(qint64 id) override
Removes the collection with the given id from the search.
Helper integration between Akonadi and Qt.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:38 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.