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

0001 /* -*- mode: c++; c-basic-offset:4 -*-
0002     commands/signencryptfoldercommand.h
0003 
0004     This file is part of Kleopatra, the KDE keymanager
0005     SPDX-FileCopyrightText: 2016 Bundesamt für Sicherheit in der Informationstechnik
0006     SPDX-FileContributor: Intevation GmbH
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #pragma once
0012 
0013 #include "signencryptfilescommand.h"
0014 
0015 #include <QStringList>
0016 
0017 namespace Kleo
0018 {
0019 namespace Commands
0020 {
0021 
0022 class SignEncryptFolderCommand : public SignEncryptFilesCommand
0023 {
0024     Q_OBJECT
0025 public:
0026     explicit SignEncryptFolderCommand(QAbstractItemView *view, KeyListController *parent);
0027     explicit SignEncryptFolderCommand(KeyListController *parent);
0028 
0029 protected:
0030     QStringList selectFiles() const override;
0031 };
0032 
0033 }
0034 }