mirror of https://github.com/CGAL/cgal
13 lines
313 B
C++
13 lines
313 B
C++
// Use something defined not in headers but in the CGAL library to test that is was indeed properly built and linked to,
|
|
|
|
#include <CGAL/Qt/utility.h>
|
|
|
|
typedef QRectF (*mapToSceneFunction)(const QGraphicsView* , const QRect);
|
|
|
|
int main()
|
|
{
|
|
volatile mapToSceneFunction f = CGAL::Qt::mapToScene;
|
|
|
|
return 0;
|
|
}
|