mirror of https://github.com/CGAL/cgal
19 lines
425 B
C++
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();
|
|
}
|