]> git.zarvox.org Git - shareboard.git/blob - base64.h
Implement image insertion and placement, tool selection, and eraser.
[shareboard.git] / base64.h
1 #ifndef __BASE64_H__
2 #define __BASE64_H__
3 #include <QString>
4 #include <QByteArray>
5
6 QString toBase64(QByteArray binary);
7 QByteArray fromBase64(QString text);
8
9 #endif // __BASE64_H__