14 lines
234 B
C
14 lines
234 B
C
|
#ifndef IMAGE_FOREVER_H
|
||
|
#define IMAGE_FOREVER_H
|
||
|
#include <QImage>
|
||
|
#include <QUuid>
|
||
|
|
||
|
class ImageForever
|
||
|
{
|
||
|
public:
|
||
|
static const QImage *get(const QUuid &id);
|
||
|
static QUuid add(const QImage *image, QUuid toId=QUuid());
|
||
|
};
|
||
|
|
||
|
#endif
|