00001 /* -*- C++ -*- */ 00002 // $Id: Pipe.i,v 1.1.1.2 2001/12/04 14:33:07 chad Exp $ 00003 00004 // Pipe.i 00005 00006 ASYS_INLINE 00007 ACE_Pipe::~ACE_Pipe (void) 00008 { 00009 ACE_TRACE ("ACE_Pipe::~ACE_Pipe"); 00010 // Notice that the destructor doesn't close the handles for you. 00011 } 00012 00013 ASYS_INLINE ACE_HANDLE 00014 ACE_Pipe::read_handle (void) const 00015 { 00016 ACE_TRACE ("ACE_Pipe::read_handle"); 00017 return this->handles_[0]; 00018 } 00019 00020 ASYS_INLINE ACE_HANDLE 00021 ACE_Pipe::write_handle (void) const 00022 { 00023 ACE_TRACE ("ACE_Pipe::write_handle"); 00024 return this->handles_[1]; 00025 }
1.2.14 written by Dimitri van Heesch,
© 1997-2002