Files
cgal/GraphicsView/include/CGAL/IO/QtGraphicsItem.h
T
Laurent Rineau 40f5ba9ec6 Move some header to include/CGAL/IO/, and rename the corresponding classes:
- "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.)
2008-06-18 10:57:39 +00:00

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