cgal/Polyhedron/demo/Polyhedron/Classification.cpp

19 lines
461 B
C++

#include "Polyhedron_demo.h"
#include <clocale>
#include <CGAL/Qt/resources.h>
#include <QSurfaceFormat>
/*!
* \brief defines the entry point of the demo.
* Creates the application and sets a main window.
*/
int main(int argc, char **argv)
{
Polyhedron_demo app(argc, argv,
"Classification demo",
"CGAL Classification Demo",
QStringList() << "Classification");
return app.try_exec();
}