KShare/uploaders/default/clipboarduploader.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

19 lines
380 B
C++

#ifndef CLIPBOARDUPLOADER_HPP
#define CLIPBOARDUPLOADER_HPP
#include <QPixmap>
#include <uploaders/uploader.hpp>
class ClipboardUploader : public Uploader {
public:
QString name() {
return "clipboard";
}
QString description() {
return "Copies the image to clipboard";
}
void doUpload(QPixmap *pixmap);
};
#endif // CLIPBOARDUPLOADER_HPP