File indexing completed on 2024-06-23 05:07:00

0001 /*
0002     SPDX-FileCopyrightText: 2006 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "handler.h"
0010 
0011 namespace Akonadi
0012 {
0013 namespace Server
0014 {
0015 /**
0016   @ingroup akonadi_server_handler
0017 
0018   This command is used to modify collections. Its syntax is similar to the STORE
0019   command.
0020 */
0021 class CollectionModifyHandler : public Handler
0022 {
0023 public:
0024     CollectionModifyHandler(AkonadiServer &akonadi);
0025     ~CollectionModifyHandler() override = default;
0026 
0027     bool parseStream() override;
0028 };
0029 
0030 } // namespace Server
0031 } // namespace Akonadi