summaryrefslogtreecommitdiff
path: root/ace/LSOCK_Stream.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/LSOCK_Stream.inl')
-rw-r--r--ace/LSOCK_Stream.inl23
1 files changed, 0 insertions, 23 deletions
diff --git a/ace/LSOCK_Stream.inl b/ace/LSOCK_Stream.inl
deleted file mode 100644
index 7b94768e3c7..00000000000
--- a/ace/LSOCK_Stream.inl
+++ /dev/null
@@ -1,23 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// Sets both the file descriptors... Overrides handle from the base
-// classes.
-
-ACE_INLINE void
-ACE_LSOCK_Stream::set_handle (ACE_HANDLE fd)
-{
- ACE_TRACE ("ACE_LSOCK_Stream::set_handle");
- this->ACE_SOCK_Stream::set_handle (fd);
- this->ACE_LSOCK::set_handle (fd);
-}
-
-ACE_INLINE ACE_HANDLE
-ACE_LSOCK_Stream::get_handle (void) const
-{
- ACE_TRACE ("ACE_LSOCK_Stream::get_handle");
- return this->ACE_SOCK_Stream::get_handle ();
-}
-
-
-