/* -*- C++ -*- */ // Pipe.i,v 4.4 2003/11/01 11:15:16 dhinton Exp // Pipe.i #include "ace/Global_Macros.h" ASYS_INLINE ACE_Pipe::~ACE_Pipe (void) { ACE_TRACE ("ACE_Pipe::~ACE_Pipe"); // Notice that the destructor doesn't close the handles for you. } ASYS_INLINE ACE_HANDLE ACE_Pipe::read_handle (void) const { ACE_TRACE ("ACE_Pipe::read_handle"); return this->handles_[0]; } ASYS_INLINE ACE_HANDLE ACE_Pipe::write_handle (void) const { ACE_TRACE ("ACE_Pipe::write_handle"); return this->handles_[1]; }