mirror of https://github.com/CGAL/cgal
19 lines
423 B
C++
19 lines
423 B
C++
#include "CGAL_Lab.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,
|
|
"Mesh_3 demo",
|
|
"CGAL Mesh_3 Demo",
|
|
QStringList() << "Mesh_3");
|
|
return app.try_exec();
|
|
}
|