mirror of https://github.com/CGAL/cgal
27 lines
577 B
C++
27 lines
577 B
C++
|
|
#include "MainWindow.h"
|
|
#include "typedefs.h"
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
QApplication application(argc,argv);
|
|
|
|
application.setOrganizationDomain("geometryfactory.com");
|
|
application.setOrganizationName("GeometryFactory");
|
|
application.setApplicationName("Alpha Shape Reconstruction");
|
|
|
|
// Import resources from libCGALQt4.
|
|
// See http://doc.trolltech.com/4.4/qdir.html#Q_INIT_RESOURCE
|
|
Q_INIT_RESOURCE(File);
|
|
Q_INIT_RESOURCE(Alpha_shape_3);
|
|
Q_INIT_RESOURCE(CGAL);
|
|
MainWindow mw;
|
|
mw.show();
|
|
|
|
return application.exec();
|
|
}
|