Browse Source

Main file that instantiates the GUI class and run it.

Luis Ibanez 24 years ago
parent
commit
ab03a4d976
1 changed files with 22 additions and 0 deletions
  1. 22 0
      Source/FLTKDialog/FLTKDialog.cpp

+ 22 - 0
Source/FLTKDialog/FLTKDialog.cpp

@@ -0,0 +1,22 @@
+
+#include "CMakeSetupGUIImplementation.h"
+#include "FL/FL.h"
+#include "FL/FL_ask.H"
+
+int main() 
+{
+
+  fl_message_font(FL_HELVETICA,11);
+
+  CMakeSetupGUIImplementation * gui 
+       = new CMakeSetupGUIImplementation;
+
+  gui->Show();
+
+  Fl::run();
+
+  delete gui;
+  
+  return 0;
+  
+}