KShare/uploaders/uploader.hpp
ArsenArsen 37ce6f1eda Add clang-format; Make text and blur less annoying
I didn't read the clang-format documentation properly
2017-05-09 17:26:00 +02:00

15 lines
257 B
C++

#ifndef UPLOADER_HPP
#define UPLOADER_HPP
#include <QPixmap>
#include <QString>
class Uploader {
public:
virtual void doUpload(QPixmap *pixmap) = 0;
virtual QString name() = 0;
virtual QString description() = 0;
};
#endif // UPLOADER_HPP