summaryrefslogtreecommitdiff
path: root/ace/Pipe.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Pipe.inl')
-rw-r--r--ace/Pipe.inl25
1 files changed, 0 insertions, 25 deletions
diff --git a/ace/Pipe.inl b/ace/Pipe.inl
deleted file mode 100644
index 64a5ee4049c..00000000000
--- a/ace/Pipe.inl
+++ /dev/null
@@ -1,25 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-#include "ace/Global_Macros.h"
-
-ACE_INLINE
-ACE_Pipe::~ACE_Pipe (void)
-{
- ACE_TRACE ("ACE_Pipe::~ACE_Pipe");
- // Notice that the destructor doesn't close the handles for you.
-}
-
-ACE_INLINE ACE_HANDLE
-ACE_Pipe::read_handle (void) const
-{
- ACE_TRACE ("ACE_Pipe::read_handle");
- return this->handles_[0];
-}
-
-ACE_INLINE ACE_HANDLE
-ACE_Pipe::write_handle (void) const
-{
- ACE_TRACE ("ACE_Pipe::write_handle");
- return this->handles_[1];
-}