mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01: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
|