summaryrefslogtreecommitdiff
path: root/examples/C++NPv2/Reactor_Logging_Server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/C++NPv2/Reactor_Logging_Server.cpp')
-rw-r--r--examples/C++NPv2/Reactor_Logging_Server.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/examples/C++NPv2/Reactor_Logging_Server.cpp b/examples/C++NPv2/Reactor_Logging_Server.cpp
deleted file mode 100644
index b36539c2a6d..00000000000
--- a/examples/C++NPv2/Reactor_Logging_Server.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
-** $Id$
-**
-** Copyright 2002 Addison Wesley. All Rights Reserved.
-*/
-
-#include "Reactor_Logging_Server_T.h"
-#include "Logging_Acceptor_Ex.h"
-#include "ace/Log_Msg.h"
-
-typedef Reactor_Logging_Server<Logging_Acceptor_Ex>
- Server_Logging_Daemon;
-
-int main (int argc, char *argv[])
-{
- ACE_Reactor reactor;
- Server_Logging_Daemon *server;
- // Ignore argv[0]...
- --argc; ++argv;
- ACE_NEW_RETURN (server,
- Server_Logging_Daemon (argc, argv, &reactor),
- 1);
-
- if (reactor.run_reactor_event_loop () == -1)
- ACE_ERROR_RETURN ((LM_ERROR, "%p\n",
- "run_reactor_event_loop()"), 1);
- return 0;
-}
-