mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-09 15:37:00 -04:00
27 lines
396 B
C++
27 lines
396 B
C++
#ifndef OVERVIEWPAGE_H
|
|
#define OVERVIEWPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class OverviewPage;
|
|
}
|
|
|
|
class OverviewPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OverviewPage(QWidget *parent = 0);
|
|
~OverviewPage();
|
|
|
|
public slots:
|
|
void setBalance(qint64 balance);
|
|
void setNumTransactions(int count);
|
|
|
|
private:
|
|
Ui::OverviewPage *ui;
|
|
|
|
};
|
|
|
|
#endif // OVERVIEWPAGE_H
|