summaryrefslogtreecommitdiff
path: root/ace/IO_Cntl_Msg.cpp
blob: aa8281f63d450161ad8b46c1989c1790b5b62bcc (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
// IO_Cntl_Msg.cpp
// $Id$

#if 0
// This is not meant to be used, it's just a place holder...

ACE_RCSID(ace, IO_Cntl_Msg, "$Id$")

// Forward decl
template <class SYNCH> class ACE_Module;


class ACE_Module_Link
{
  // = TITLE
  //     Data structure used to link two modules together
  //
  // = DESCRIPTION
  //
public:
  ACE_Module_Link (ACE_Module *m1, ACE_Module *m2): mod_upper_ (m1), mod_lower_ (m2), count_ (0) {}

  ACE_Module *upper (void) { return this->mod_upper_; }
  void   upper (ACE_Module *u) { this->mod_upper_ = u; }

  ACE_Module *lower (void) { return this->mod_lower_; }
  void   lower (ACE_Module *l) { this->mod_lower_ = l; }

  int    count (void) { return this->count_; }
  void   count (int c) { this->count_ = c; }

private:
  ACE_Module *mod_upper_;
  ACE_Module *mod_lower_;
  int    count_;
};
#endif