source: GTP/trunk/Lib/Geom/shared/GeoTool/src/GeoTool.cpp @ 980

Revision 980, 358 bytes checked in by gumbau, 18 years ago (diff)
Line 
1#include "GL/glew.h"
2#ifdef _WIN32
3#include "GL/wglew.h"
4#endif
5
6#include "GeoMeshViewUI.h"
7
8using namespace fltk;
9
10GeoMeshViewUI   *interface;
11
12float incrementa(float i) { return interface->updateProgressBar(i);  }
13
14
15int main(int argc, char **argv)
16{
17        interface       =       new GeoMeshViewUI(incrementa);
18       
19        interface->show();
20
21  return run();
22}
23
Note: See TracBrowser for help on using the repository browser.