summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/Log/Basic/main.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/orbsvcs/examples/Log/Basic/main.cpp
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/orbsvcs/examples/Log/Basic/main.cpp')
-rw-r--r--TAO/orbsvcs/examples/Log/Basic/main.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/TAO/orbsvcs/examples/Log/Basic/main.cpp b/TAO/orbsvcs/examples/Log/Basic/main.cpp
deleted file mode 100644
index 3b5098b43ad..00000000000
--- a/TAO/orbsvcs/examples/Log/Basic/main.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-#include "TLS_Client.h"
-#include "ace/OS_main.h"
-
-ACE_RCSID (Basic,
- main,
- "$Id$")
-
-
-int
-ACE_TMAIN (int argc, ACE_TCHAR *argv[])
-{
- TLS_Client client; // Telecom Log Service Client
-
- ACE_TRY_NEW_ENV
- {
- client.init (argc, argv
- ACE_ENV_ARG_PARAMETER); //Init the Client
- ACE_TRY_CHECK;
-
- client.run_tests (ACE_ENV_SINGLE_ARG_PARAMETER); //Init the Client
-
- ACE_TRY_CHECK;
- }
- ACE_CATCH (CORBA::UserException, ue)
- {
- ACE_PRINT_EXCEPTION (ue,
- "TLS_Client user error: ");
- return 1;
- }
- ACE_CATCH (CORBA::SystemException, se)
- {
- ACE_PRINT_EXCEPTION (se,
- "TLS_Client system error: ");
- return 1;
- }
- ACE_ENDTRY;
-
- return 0;
-}