diff options
Diffstat (limited to 'Source/FLTKDialog/FLTKDialog.cxx')
-rw-r--r-- | Source/FLTKDialog/FLTKDialog.cxx | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/Source/FLTKDialog/FLTKDialog.cxx b/Source/FLTKDialog/FLTKDialog.cxx deleted file mode 100644 index dedb2e4..0000000 --- a/Source/FLTKDialog/FLTKDialog.cxx +++ /dev/null @@ -1,41 +0,0 @@ -/*========================================================================= - - Program: Insight Segmentation & Registration Toolkit - Module: $RCSfile$ - Language: C++ - Date: $Date$ - Version: $Revision$ - - Copyright (c) 2002 Insight Consortium. All rights reserved. - See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - -=========================================================================*/ - -#include "CMakeSetupGUIImplementation.h" -#include "FL/Fl.H" -#include "FL/fl_ask.H" - -int main(int argc, char * argv[] ) -{ - - fl_message_font(FL_HELVETICA,11); - - CMakeSetupGUIImplementation * gui - = new CMakeSetupGUIImplementation; - - gui->SetPathToExecutable( argv[0] ); - gui->Show(); - gui->LoadRecentDirectories(); - gui->LoadCacheFromDiskToGUI(); - - Fl::run(); - - delete gui; - - return 0; - -} |