blob: 081cbabb2a2bc8a253cdb7de9d5dac2224e4f5cb (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// Multiplexor.h
//
// = DESCRIPTION
// Define the ACE_Driver and ACE_Multiplexor container classes.
// Note that these classes have never been implemented due to lack
// of need.
//
// = AUTHOR
// Doug Schmidt
//
// ============================================================================
#ifndef ACE_MULTIPLEXOR_H
#define ACE_MULTIPLEXOR_H
#include "ace/Module.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Map_Manager.h"
#if defined (ACE_HAS_THREADS)
#if 0
class ACE_Export ACE_Driver
{
// = TITLE
//
//
// = DESCRIPTION
//
public:
ACE_Driver (void);
~ACE_Driver (void);
virtual int link_from_below (ACE_Module *mod);
virtual ACE_Module *alloc_module (ACE_Driver *) = 0;
virtual int unlink_from_below (ACE_Module *);
};
class ACE_Export ACE_Multiplexor
{
// = TITLE
//
// = DESCRIPTION
//
public:
// = Constructors and destructors
ACE_Multiplexor (void);
~ACE_Multiplexor (void);
virtual int link_from_above (ACE_Driver &ld);
virtual int link_from_above (ACE_Multiplexor &lm);
virtual int link_from_below (ACE_Module *mod);
virtual ACE_Module *alloc_lower_module (ACE_Multiplexor *) = 0;
virtual ACE_Module *alloc_upper_module (ACE_Multiplexor *) = 0;
virtual int unlink_from_above (ACE_Driver &ld);
virtual int unlink_from_above (ACE_Multiplexor &lm);
virtual int unlink_from_below (ACE_Module *mod);
};
#if defined (__ACE_INLINE__)
#include "ace/Multiplexor.i"
#endif /* __ACE_INLINE__ */
#endif /* 0 */
#endif /* ACE_HAS_THREADS */
#endif /* ACE_MULTIPLEXOR_H */
|