/******************************************************************************* * FILE NAME: Hello.app * * * * DESCRIPTION: * * Main program stub for class: * * Hello- Hello World - My first VA C++ Application * * ---------------------------------------------------------------------------- * * Warning: This file was generated by the VisualAge C++ Visual Builder. * * Modifications to this source file will be lost when the part is regenerated. * *******************************************************************************/ #include #include #include #include "Hello.hpp" //------------------------------------------------------------------------------ // main //------------------------------------------------------------------------------ int main(int argc, char ** argv) { IApplication::current().setArgs(argc, argv); Hello *iPart; IMessageBox::Response resp = IMessageBox::unknown; do { try { iPart = new Hello(); iPart->initializePart(); } catch (IException& exc) { resp = IMessageBox(IWindow::desktopWindow()).show( exc.text(), IMessageBox::retryCancelButton); } } while (resp == IMessageBox::retry); if (resp == IMessageBox::cancel) IApplication::current().exit(); iPart->setAutoDeleteObject(); iPart->show(); IApplication::current().run(); return 0; } //end main