File indexing completed on 2024-12-08 04:34:21
0001 /* 0002 SPDX-FileCopyrightText: 2024 Laurent Montel <montel.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 #pragma once 0007 0008 #include "libruqolawidgets_private_export.h" 0009 #include <QDialog> 0010 class E2eCopyPasswordWidget; 0011 class LIBRUQOLAWIDGETS_TESTS_EXPORT E2eCopyPasswordDialog : public QDialog 0012 { 0013 Q_OBJECT 0014 public: 0015 explicit E2eCopyPasswordDialog(QWidget *parent = nullptr); 0016 ~E2eCopyPasswordDialog() override; 0017 0018 private: 0019 E2eCopyPasswordWidget *const mE2eCopyPasswordWidget; 0020 };