/***********************************************************************/ /* Open Visualization Data Explorer */ /* (C) Copyright IBM Corp. 1989,1999 */ /* ALL RIGHTS RESERVED */ /* This code licensed under the */ /* "IBM PUBLIC LICENSE - Open Visualization Data Explorer" */ /***********************************************************************/ #include #include "../base/UIConfig.h" #ifdef DXD_WIN #include #include /* Motif Toolkit */ #include /* Mrm */ #ifdef _X86_ #include /* HCL - exit prototype */ #include /* HCL - HCLXmInit prototype */ #endif #endif #include "../base/defines.h" #include "StartupApplication.h" void main(unsigned int argc, char** argv) { #ifdef DXD_WIN #ifdef _X86_ HCLXmInit(); #endif #endif // // Initialize Xt Intrinsics, build all the windows, and enter event loop. // Note that all the windows are created elsewhere (App.C), // and managed in the application initialization routine. // if (NOT theApplication) { theApplication = new StartupApplication("Startup"); } theApplication->initialize(&argc, argv); theApplication->handleEvents(); delete theApplication; }