lbrycrd/gui/include/bitcoinaddressvalidator.h

22 lines
367 B
C
Raw Normal View History

2011-05-13 22:00:27 +02:00
#ifndef BITCOINADDRESSVALIDATOR_H
#define BITCOINADDRESSVALIDATOR_H
#include <QRegExpValidator>
#include <base58.h>
2011-05-13 22:00:27 +02:00
class BitcoinAddressValidator : public QRegExpValidator
{
Q_OBJECT
public:
explicit BitcoinAddressValidator(QObject *parent = 0);
2011-05-14 11:18:39 +02:00
static const int MaxAddressLength = 34;
2011-05-13 22:00:27 +02:00
signals:
public slots:
};
#endif // BITCOINADDRESSVALIDATOR_H