dogecoin/src/qt/bitcoinaddressvalidator.h

22 lines
487 B
C
Raw Normal View History

2011-05-13 22:00:27 +02:00
#ifndef BITCOINADDRESSVALIDATOR_H
#define BITCOINADDRESSVALIDATOR_H
#include <QValidator>
2011-05-13 22:00:27 +02:00
/** Base58 entry widget validator.
Corrects near-miss characters and refuses characters that are not part of base58.
2011-06-03 10:52:49 +02:00
*/
class BitcoinAddressValidator : public QValidator
2011-05-13 22:00:27 +02:00
{
Q_OBJECT
2011-05-13 22:00:27 +02:00
public:
explicit BitcoinAddressValidator(QObject *parent = 0);
State validate(QString &input, int &pos) const;
static const int MaxAddressLength = 35;
2011-05-13 22:00:27 +02:00
};
#endif // BITCOINADDRESSVALIDATOR_H