mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-27 04:45:57 +00:00
32 lines
536 B
C
32 lines
536 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_CONTACTSDIALOG_H
|
||
|
#define FEATHER_CONTACTSDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class ContactsDialog;
|
||
|
}
|
||
|
|
||
|
class ContactsDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ContactsDialog(QWidget *parent = nullptr);
|
||
|
~ContactsDialog() override;
|
||
|
|
||
|
QString getAddress();
|
||
|
QString getName();
|
||
|
|
||
|
private:
|
||
|
Ui::ContactsDialog *ui;
|
||
|
|
||
|
QString m_address;
|
||
|
QString m_name;
|
||
|
};
|
||
|
|
||
|
#endif //FEATHER_CONTACTSDIALOG_H
|