PIVX Core  5.6.99
P2P Digital Currency
myaddressrow.h
Go to the documentation of this file.
1 // Copyright (c) 2019-2021 The PIVX Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef PIVX_QT_MYADDRESSROW_H
6 #define PIVX_QT_MYADDRESSROW_H
7 
8 #include <QWidget>
9 
10 namespace Ui {
11 class MyAddressRow;
12 }
13 
14 class MyAddressRow : public QWidget
15 {
16  Q_OBJECT
17 
18 public:
19  explicit MyAddressRow(QWidget *parent = nullptr);
20  ~MyAddressRow();
21 
22  void updateView(const QString& address, const QString& label, const QString& date);
23 
24 private:
25  Ui::MyAddressRow *ui;
26 };
27 
28 #endif // PIVX_QT_MYADDRESSROW_H
Ui::MyAddressRow * ui
Definition: myaddressrow.h:25
MyAddressRow(QWidget *parent=nullptr)
Definition: myaddressrow.cpp:8
void updateView(const QString &address, const QString &label, const QString &date)