File indexing completed on 2024-06-23 05:14:13

0001 /* -*- mode: c++; c-basic-offset:4 -*-
0002     uiserver/decryptfilescommand.h
0003 
0004     This file is part of Kleopatra, the KDE keymanager
0005     SPDX-FileCopyrightText: 2007 Klarälvdalens Datakonsult AB
0006 
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 #pragma once
0011 
0012 #include <uiserver/decryptverifycommandfilesbase.h>
0013 
0014 namespace Kleo
0015 {
0016 
0017 class DecryptFilesCommand : public AssuanCommandMixin<DecryptFilesCommand, DecryptVerifyCommandFilesBase>
0018 {
0019 public:
0020     // DecryptFilesCommand();
0021     //~DecryptFilesCommand();
0022 
0023 private:
0024     DecryptVerifyOperation operation() const override
0025     {
0026         return Decrypt;
0027     }
0028 
0029 public:
0030     static const char *staticName()
0031     {
0032         return "DECRYPT_FILES";
0033     }
0034 };
0035 
0036 }