summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/MonitorControl/Control.cpp
blob: 7ff8ac5455de2bf8d42eb5b9685c8eec2fab6e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "orbsvcs/orbsvcs/Notify/MonitorControl/Control.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

TAO_NS_Control::~TAO_NS_Control ()
{
}

TAO_NS_Control::TAO_NS_Control (const char* name)
 : name_ (name)
{
}

const ACE_CString&
TAO_NS_Control::name () const
{
  return this->name_;
}

TAO_END_VERSIONED_NAMESPACE_DECL