File indexing completed on 2025-01-26 04:52:43

0001 /* -*- mode: c++; c-basic-offset:4 -*-
0002     core/decryptverifyfilescommand.cpp
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 #include "decryptverifyfilescommand.h"
0011 
0012 using namespace KleopatraClientCopy;
0013 
0014 DecryptVerifyFilesCommand::DecryptVerifyFilesCommand(QObject *p)
0015     : Command(p)
0016 {
0017     setCommand("DECRYPT_VERIFY_FILES");
0018     setOption("nohup");
0019 }
0020 
0021 DecryptVerifyFilesCommand::~DecryptVerifyFilesCommand()
0022 {
0023 }
0024 
0025 #include "moc_decryptverifyfilescommand.cpp"