Public Member Functions | Protected Attributes

ACE_RMCast::In_Element Struct Reference

#include <Stack.h>

Inheritance diagram for ACE_RMCast::In_Element:
Inheritance graph
[legend]
Collaboration diagram for ACE_RMCast::In_Element:
Collaboration graph
[legend]

List of all members.

Public Member Functions

virtual ~In_Element ()
 In_Element ()
virtual void in_stop ()
virtual void in_start (In_Element *in)
virtual void recv (Message_ptr m)

Protected Attributes

In_Elementin_

Detailed Description

Definition at line 33 of file Stack.h.


Constructor & Destructor Documentation

ACE_RMCast::In_Element::~In_Element (  )  [virtual]

Definition at line 45 of file Stack.cpp.

  {
  }

ACE_RMCast::In_Element::In_Element (  ) 

Definition at line 50 of file Stack.cpp.

      : in_ (0)
  {
  }


Member Function Documentation

void ACE_RMCast::In_Element::in_start ( In_Element in  )  [virtual]

Definition at line 56 of file Stack.cpp.

  {
    in_ = in;
  }

void ACE_RMCast::In_Element::in_stop (  )  [virtual]

Definition at line 67 of file Stack.cpp.

  {
    in_ = 0;
  }

void ACE_RMCast::In_Element::recv ( Message_ptr  m  )  [virtual]

Definition at line 61 of file Stack.cpp.

  {
    if (in_) in_->recv (m);
  }


Member Data Documentation

Definition at line 50 of file Stack.h.


The documentation for this struct was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Defines