File indexing completed on 2025-01-26 04:52:43
0001 /* -*- mode: c++; c-basic-offset:4 -*- 0002 core/decryptverifyfilescommand.h 0003 0004 This file is part of KleopatraClient, the Kleopatra interface library 0005 SPDX-FileCopyrightText: 2008 Klarälvdalens Datakonsult AB 0006 0007 SPDX-License-Identifier: LGPL-2.0-or-later 0008 */ 0009 0010 #pragma once 0011 0012 #include <libkleopatraclient/core/command.h> 0013 0014 namespace KleopatraClientCopy 0015 { 0016 0017 class KLEOPATRACLIENTCORE_EXPORT DecryptVerifyFilesCommand : public Command 0018 { 0019 Q_OBJECT 0020 public: 0021 explicit DecryptVerifyFilesCommand(QObject *parent = nullptr); 0022 ~DecryptVerifyFilesCommand() override; 0023 0024 // Inputs 0025 0026 using Command::filePaths; 0027 using Command::setFilePaths; 0028 0029 // No Outputs 0030 }; 0031 0032 }