mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-02-04 10:54:21 +00:00
27 lines
356 B
C
27 lines
356 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);
|
||
|
|
||
|
private:
|
||
|
Ui::OverviewPage *ui;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // OVERVIEWPAGE_H
|