source:
GTP/trunk/Lib/Geom/shared/GeoTool/src/GeoTool.cpp
@
1007
Revision 1007, 384 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 <malloc.h> |
7 | #include "GeoMeshViewUI.h" |
8 | |
9 | using namespace fltk; |
10 | |
11 | GeoMeshViewUI *interface; |
12 | |
13 | float incrementa(float i) { return interface->updateProgressBar(i); } |
14 | |
15 | |
16 | int main(int argc, char **argv) |
17 | { |
18 | _set_sbh_threshold(1016); |
19 | |
20 | interface = new GeoMeshViewUI(incrementa); |
21 | |
22 | interface->show(); |
23 | |
24 | return run(); |
25 | } |
26 |
Note: See TracBrowser
for help on using the repository browser.