diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-24 19:02:10 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-24 19:02:10 +0000 |
commit | eef5b7ca85a3842950948fccca42a3b83c84ff75 (patch) | |
tree | f0cefdf50cecee81338f319ea19608d49cf3898a /ace/SPIPE.h | |
parent | 07e8a1d00d1e2ab1c2b47e3698886f1512bcf03a (diff) | |
download | ATCD-pluggable_av_start.tar.gz |
This commit was manufactured by cvs2svn to create tagpluggable_av_start
'pluggable_av_start'.
Diffstat (limited to 'ace/SPIPE.h')
-rw-r--r-- | ace/SPIPE.h | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/ace/SPIPE.h b/ace/SPIPE.h deleted file mode 100644 index 1d7cac465dc..00000000000 --- a/ace/SPIPE.h +++ /dev/null @@ -1,67 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// ace -// -// = FILENAME -// SPIPE.h -// -// = AUTHOR -// Doug Schmidt -// -// ============================================================================ - -#ifndef ACE_SPIPE_H -#define ACE_SPIPE_H - -#include "ace/IPC_SAP.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "ace/SPIPE_Addr.h" - -class ACE_Export ACE_SPIPE : public ACE_IPC_SAP -{ - // = TITLE - // Defines the member functions for the base class of the - // ACE_SPIPE abstraction. -public: - int close (void); - // Close down the STREAM pipe without removing the rendezvous point. - - int remove (void); - // Close down the STREAM pipe and remove the rendezvous point from - // the file system. - - int get_local_addr (ACE_SPIPE_Addr &) const; - // Return the local address of this endpoint. - - int disable (int signum) const ; - // Disable signal <signum> - // This is here to prevent Win32 from - // disabling SPIPE using socket calls - - void dump (void) const; - // Dump the state of an object. - - ACE_ALLOC_HOOK_DECLARE; - // Declare the dynamic allocation hooks. - -protected: - ACE_SPIPE (void); - // Ensure that this class is an abstract base class - - ACE_SPIPE_Addr local_addr_; - // Our local address. -}; - -#if !defined (ACE_LACKS_INLINE_FUNCTIONS) -#include "ace/SPIPE.i" -#endif - -#endif /* ACE_SPIPE_H */ |