summaryrefslogtreecommitdiff
path: root/apps/JAWS/server/HTTP_Server_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS/server/HTTP_Server_T.h')
-rw-r--r--apps/JAWS/server/HTTP_Server_T.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/apps/JAWS/server/HTTP_Server_T.h b/apps/JAWS/server/HTTP_Server_T.h
deleted file mode 100644
index cb76ce03759..00000000000
--- a/apps/JAWS/server/HTTP_Server_T.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#if !defined (HTTP_SERVER_T_H)
-#define HTTP_SERVER_T_H
-
-// Specialize ACE_SOCK_Acceptor to lock around accept();
-template <class LOCK>
-class LOCK_SOCK_Acceptor : public ACE_SOCK_Acceptor
-{
-public:
- int accept (ACE_SOCK_Stream &new_stream,
- ACE_Addr *remote_addr = 0,
- ACE_Time_Value *timeout = 0,
- int restart = 1) const;
-
-private:
- LOCK lock_;
-};
-
-#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
-#include "JAWS/server/HTTP_Server_T.cpp"
-#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
-
-#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
-#pragma implementation ("HTTP_Server_T.cpp")
-#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
-
-#endif /* HTTP_SERVER_T_H */