bitcoin/gui/include/bitcoinaddressvalidator.h

20 lines
346 B
C
Raw Normal View History

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