cgal/Lab/demo/Lab/Classification.cpp

19 lines
425 B
C++

#include "CGALlab.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)
{
CGAL_Lab app(argc, argv,
"Classification demo",
"CGAL Classification Demo",
QStringList() << "Classification");
return app.try_exec();
}