summaryrefslogtreecommitdiff
path: root/ACE/examples/APG/Svc_Config/HA_Configurable_Server_Static.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
commitc4078c377d74290ebe4e66da0b4975da91732376 (patch)
tree1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/examples/APG/Svc_Config/HA_Configurable_Server_Static.cpp
parent700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff)
downloadATCD-c4078c377d74290ebe4e66da0b4975da91732376.tar.gz
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/examples/APG/Svc_Config/HA_Configurable_Server_Static.cpp')
-rw-r--r--ACE/examples/APG/Svc_Config/HA_Configurable_Server_Static.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/ACE/examples/APG/Svc_Config/HA_Configurable_Server_Static.cpp b/ACE/examples/APG/Svc_Config/HA_Configurable_Server_Static.cpp
deleted file mode 100644
index 8ac10b08ee1..00000000000
--- a/ACE/examples/APG/Svc_Config/HA_Configurable_Server_Static.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-// $Id$
-
-// Listing 1 code/ch19
-#include "ace/OS_main.h"
-#include "ace/Service_Config.h"
-#include "ace/Reactor.h"
-
-int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
-{
- ACE_STATIC_SVC_REGISTER (HA_Status_Descriptor);
- ACE_Service_Config::open (argc,
- argv,
- ACE_DEFAULT_LOGGER_KEY,
- 0);
- ACE_Reactor::instance ()->run_reactor_event_loop ();
- return 0;
-}
-// Listing 1