blob: 1a46f5644036fdb23ca77b6845dc795e6d3c1322 (
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
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file UPIPE_Addr.h
*
* $Id$
*
* @author Doug Schmidt
*/
//=============================================================================
#ifndef ACE_UPIPE_ADDR_H
#define ACE_UPIPE_ADDR_H
#include "ace/pre.h"
#include "ace/SPIPE_Addr.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
typedef ACE_SPIPE_Addr ACE_UPIPE_Addr;
#if 0
// We need this "class" to make the class2man documentation utility
// happy.
/**
* @class ACE_UPIPE_Addr
*
* @brief Defines the ACE "user pipe" address family address format.
*
* This class has an identical interface to the <ACE_SPIPE_Addr>
* class. In fact, it's simply a typedef!
*/
class ACE_Export ACE_UPIPE_Addr
{
public:
// = Same interface as <ACE_SPIPE_Addr>.
};
#endif /* 0 */
#include "ace/post.h"
#endif /* ACE_UPIPE_ADDR_H */
|