Files
cgal/GraphicsView/doc/GraphicsView/CGAL/Qt/GraphicsViewIsoRectangleInput.h
T
Sébastien Loriot 2dfe8a3d73 workaround for a doxygen bug: remove space after /!* to avoid a verbatim env
this happens if you have an empty line or the text directly after /!*
to find them in the generated documentation, grep for "pre class=\"fragment\""
(a few of them are legitimate however)
2013-07-25 14:58:53 +02:00

39 lines
720 B
C++

namespace CGAL {
namespace Qt {
/*!
\ingroup PkgGraphicsViewInputClasses
An object of type `GraphicsViewIsoRectangleInput` creates an axis parallel rectangle.
\tparam K must be a model of `Kernel`.
*/
template< typename K >
class GraphicsViewIsoRectangleInput : public GraphicsViewInput {
public:
/// \name Creation
/// @{
/*!
\param p is a parent object.
\param s is the scene where the iso rectangle is generated.
*/
GraphicsViewIsoRectangleInput<T>(QObject *p, QGraphicsScene* s);
/// @}
/// \name Signals
/// @{
/*!
The object `o` contains a `K::Iso_rectangle_2`.
*/
void generate(Object o);
/// @}
}; /* end GraphicsViewIsoRectangleInput */
} /* end namespace Qt */
} /* end namespace CGAL */