twisterp2pblockchainnetworkbittorrentipv6microbloggingsocial-networkdhtdecentralizedtwister-coretwisterarmyp2p-networktwister-servertwister-ipv6
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.
32 lines
608 B
32 lines
608 B
14 years ago
|
#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
|