File indexing completed on 2024-05-12 16:27:15

0001 /*
0002    SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 #include "libruqolawidgets_private_export.h"
0009 #include <QDialog>
0010 class ResetPasswordWidget;
0011 class LIBRUQOLAWIDGETS_TESTS_EXPORT ResetPasswordDialog : public QDialog
0012 {
0013     Q_OBJECT
0014 public:
0015     explicit ResetPasswordDialog(QWidget *parent = nullptr);
0016     ~ResetPasswordDialog() override;
0017 
0018     [[nodiscard]] QString email() const;
0019 
0020 private:
0021     ResetPasswordWidget *const mResetPasswordWidget;
0022 };