0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-04 10:07:27 -05:00
bitcoin-bitcoin-core/gui/include/clientmodel.h

32 lines
608 B
C
Raw Normal View History

#ifndef CLIENTMODEL_H
#define CLIENTMODEL_H
#include <QObject>
class ClientModel : public QObject
{
Q_OBJECT
public:
explicit ClientModel(QObject *parent = 0);
double getBalance();
QString getAddress();
int getNumConnections();
int getNumBlocks();
int getNumTransactions();
signals:
void balanceChanged(double balance);
void addressChanged(const QString &address);
void numConnectionsChanged(int count);
void numBlocksChanged(int count);
void numTransactionsChanged(int count);
public slots:
private slots:
void update();
};
#endif // CLIENTMODEL_H