]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - imageobj.h
New upstream version 2.9.22
[sven/vym.git] / imageobj.h
diff --git a/imageobj.h b/imageobj.h
deleted file mode 100644 (file)
index f637fce..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef IMAGEOBJ_H
-#define IMAGEOBJ_H
-
-#include <QGraphicsScene>
-#include <QGraphicsPixmapItem>
-
-/*! \brief Base class for pixmaps.
-*/
-
-class ImageObj: public QGraphicsPixmapItem
-{
-public:
-    ImageObj( QGraphicsItem*);
-    ~ImageObj();
-    void copy (ImageObj*);
-    void setVisibility(bool);
-    void save (const QString &, const char *);
-    bool load (const QString &);
-    bool load (const QPixmap &);
-};
-#endif