File indexing completed on 2024-06-23 04:03:31

0001 #ifndef XMPP_BASE64_H
0002 #define XMPP_BASE64_H
0003 
0004 #include <QByteArray>
0005 #include <QString>
0006 
0007 namespace XMPP {
0008     class Base64
0009     {
0010         public:
0011             static QString encode(const QByteArray&);
0012             static QByteArray decode(const QString &s);
0013     };
0014 }
0015 
0016 #endif