You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
356 B
27 lines
356 B
14 years ago
|
#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
|