summaryrefslogtreecommitdiff
path: root/ace/SPIPE.h
blob: 755d3bfa9e2ddbcbfa4acb56e5ccc4a55a041420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* -*- C++ -*- */
// $Id$


// ============================================================================
//
// = LIBRARY
//    ace
// 
// = FILENAME
//    SPIPE.h
//
// = AUTHOR
//    Doug Schmidt 
// 
// ============================================================================

#if !defined (ACE_SPIPE_H)
#define ACE_SPIPE_H

#include "ace/IPC_SAP.h"
#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.

  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.
};

#include "ace/SPIPE.i"
#endif /* ACE_SPIPE_H */