File indexing completed on 2024-05-05 17:43:14

0001 /*
0002  *   SPDX-FileCopyrightText: 2017 Ivan Cukic <ivan.cukic (at) kde.org>
0003  *
0004  *   SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005  */
0006 
0007 #ifndef PLASMAVAULT_KDED_UI_VAULT_IMPORTING_WIZARD_H
0008 #define PLASMAVAULT_KDED_UI_VAULT_IMPORTING_WIZARD_H
0009 
0010 #include <QDialog>
0011 
0012 namespace PlasmaVault
0013 {
0014 class Vault;
0015 } // namespace PlasmaVault
0016 
0017 class VaultImportingWizard : public QDialog
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     VaultImportingWizard(QWidget *parent = nullptr);
0023     ~VaultImportingWizard() override;
0024 
0025 Q_SIGNALS:
0026     void importedVault(PlasmaVault::Vault *vault);
0027 
0028 private:
0029     class Private;
0030     QScopedPointer<Private> d;
0031 };
0032 
0033 #endif // include guard