a2b973d34e
Segfaults are real on this one. Basically, when I call this virtual method on a field which containts a pointer to a derived class from a pure virtual one the program segfaults. Please help.
21 lines
412 B
C++
21 lines
412 B
C++
#ifndef DOTITEM_HPP
|
|
#define DOTITEM_HPP
|
|
|
|
#include "../cropscene.hpp"
|
|
#include "drawitem.hpp"
|
|
|
|
class DotItem : public DrawItem
|
|
{
|
|
public:
|
|
DotItem();
|
|
~DotItem();
|
|
QString name()
|
|
{
|
|
return "Dots (drag to add)";
|
|
}
|
|
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
|
void mouseDragEndEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
|
};
|
|
|
|
#endif // DOTITEM_HPP
|