- "Qt" as prefix, instead of a simple "Q", - no "_2" suffix. (Next commit will be the move of some .cpp files to src/CGALQt4/ and the creation of a new CGAL library.)
24 lines
349 B
C++
24 lines
349 B
C++
#ifndef CGAL_Q_GRAPHICS_ITEM_2_H
|
|
#define CGAL_Q_GRAPHICS_ITEM_2_H
|
|
|
|
#include <CGAL/Object.h>
|
|
|
|
|
|
#include <QAbstractGraphicsShapeItem>
|
|
|
|
namespace CGAL {
|
|
|
|
class QtGraphicsItem : public QObject, public QAbstractGraphicsShapeItem {
|
|
|
|
Q_OBJECT
|
|
|
|
public slots:
|
|
|
|
virtual void modelChanged() = 0;
|
|
};
|
|
|
|
|
|
} // namespace CGAL
|
|
|
|
#endif // CGAL_Q_GRAPHICS_ITEM_2_H
|