Akonadi

collectiondeletehandler.h
1/*
2 SPDX-FileCopyrightText: 2006 Volker Krause <vkrause@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "handler.h"
10
11namespace Akonadi
12{
13namespace Server
14{
15class Collection;
16
17/**
18 @ingroup akonadi_server_handler
19
20 Handler for the collection deletion command.
21
22 This commands deletes the selected collections including all their content
23 and that of any child collection.
24*/
25class CollectionDeleteHandler : public Handler
26{
27public:
28 CollectionDeleteHandler(AkonadiServer &akonadi);
29 ~CollectionDeleteHandler() override = default;
30
31 bool parseStream() override;
32
33private:
34 bool deleteRecursive(Collection &col);
35};
36
37} // namespace Server
38} // namespace Akonadi
Represents a collection of PIM items.
Definition collection.h:62
bool parseStream() override
Parse and handle the IMAP message using the streaming parser.
Helper integration between Akonadi and Qt.
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Jan 24 2025 11:49:57 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.