summaryrefslogtreecommitdiff
path: root/examples/C++NPv2/Reactor_Logging_Server_Adapter.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/C++NPv2/Reactor_Logging_Server_Adapter.h')
-rw-r--r--examples/C++NPv2/Reactor_Logging_Server_Adapter.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/examples/C++NPv2/Reactor_Logging_Server_Adapter.h b/examples/C++NPv2/Reactor_Logging_Server_Adapter.h
deleted file mode 100644
index 181d35a8b7d..00000000000
--- a/examples/C++NPv2/Reactor_Logging_Server_Adapter.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
-** $Id$
-**
-** Copyright 2002 Addison Wesley. All Rights Reserved.
-*/
-
-#ifndef _REACTOR_LOGGING_SERVER_ADAPTER_H
-#define _REACTOR_LOGGING_SERVER_ADAPTER_H
-
-#include "ace/Service_Object.h"
-#include "Reactor_Logging_Server.h"
-
-template <class ACCEPTOR>
-class Reactor_Logging_Server_Adapter : public ACE_Service_Object {
-public:
- // Hook methods inherited from <ACE_Service_Object>.
- virtual int init (int argc, ACE_TCHAR *argv[]);
- virtual int fini ();
- virtual int info (ACE_TCHAR **, size_t) const;
- virtual int suspend ();
- virtual int resume ();
-
-private:
- Reactor_Logging_Server<ACCEPTOR> *server_;
-};
-
-#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
-#include "Reactor_Logging_Server_Adapter.cpp"
-#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
-
-#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
-#pragma implementation ("Reactor_Logging_Server_Adapter.cpp")
-#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
-
-#endif /* _REACTOR_LOGGING_SERVER_ADAPTER_H */