mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-02-04 19:24:20 +00:00
20 lines
340 B
C
20 lines
340 B
C
|
#ifndef BITCOINADDRESSVALIDATOR_H
|
||
|
#define BITCOINADDRESSVALIDATOR_H
|
||
|
|
||
|
#include <QRegExpValidator>
|
||
|
|
||
|
class BitcoinAddressValidator : public QRegExpValidator
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit BitcoinAddressValidator(QObject *parent = 0);
|
||
|
|
||
|
static const QString valid_chars;
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // BITCOINADDRESSVALIDATOR_H
|