diff options
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/server.cpp')
-rw-r--r-- | TAO/orbsvcs/tests/ImplRepo/server.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/server.cpp b/TAO/orbsvcs/tests/ImplRepo/server.cpp deleted file mode 100644 index a5004d090c1..00000000000 --- a/TAO/orbsvcs/tests/ImplRepo/server.cpp +++ /dev/null @@ -1,37 +0,0 @@ -// $Id$ - -#include "server_impl.h" - -ACE_RCSID(ImplRepo, server, "$Id$") - -int -main (int argc, char *argv[]) -{ - Server_Impl server; - - ACE_DEBUG ((LM_DEBUG, "\n\tSimple_Server\n\n")); - TAO_TRY - { - if (server.init (argc, argv, TAO_TRY_ENV) == -1) - return 1; - else - { - server.run (TAO_TRY_ENV); - TAO_CHECK_ENV; - } - } - TAO_CATCH (CORBA::SystemException, sysex) - { - ACE_UNUSED_ARG (sysex); - TAO_TRY_ENV.print_exception ("System Exception"); - return -1; - } - TAO_CATCH (CORBA::UserException, userex) - { - ACE_UNUSED_ARG (userex); - TAO_TRY_ENV.print_exception ("User Exception"); - return -1; - } - TAO_ENDTRY; - return 0; -} |