mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
16 lines
215 B
C
16 lines
215 B
C
|
#ifndef IMAGEUTIL_H
|
||
|
#define IMAGEUTIL_H
|
||
|
|
||
|
#include <QTextCursor>
|
||
|
#include <QWidget>
|
||
|
|
||
|
class ImageUtil
|
||
|
{
|
||
|
public:
|
||
|
ImageUtil();
|
||
|
|
||
|
static void extractImage(QWidget *window, QTextCursor cursor);
|
||
|
};
|
||
|
|
||
|
#endif // IMAGEUTIL_H
|