PRCYCoin  2.0.0.7rc1
P2P Digital Currency
base32.h
Go to the documentation of this file.
1 #ifndef BASE32_H
2 #define BASE32_H
3 
4 #include <QObject>
5 
6 class Base32 : public QObject
7 {
8  Q_OBJECT
9 public:
10  explicit Base32(QObject *parent = 0);
11  static int base32_decode(const quint8 *encoded, quint8 *result, int bufSize);
12 
13 Q_SIGNALS:
14 
15 public Q_SLOTS:
16 
17 };
18 
19 #endif // BASE32_H
Base32::base32_decode
static int base32_decode(const quint8 *encoded, quint8 *result, int bufSize)
Base32::Base32
Base32(QObject *parent=0)
Base32
Definition: base32.h:6