mirror of https://github.com/CGAL/cgal
13 lines
300 B
C
13 lines
300 B
C
#include "viewer.h"
|
|
#include <iostream>
|
|
#include <qapplication.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
QApplication a(argc, argv);
|
|
TrFrame *fr=new TrFrame();
|
|
fr->setCaption("Triangulation Viewer");
|
|
fr->show();
|
|
a.connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit()));
|
|
return a.exec();
|
|
}
|