summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/ciao/Port_Activator.cpp
blob: c9686a23ef3f2fbdeb0fb4dcd2db6e4ac17c6929 (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
#include "Port_Activator.h"

ACE_RCSID (ciao,
           Servant_Activator,
           "$Id$")

namespace CIAO
{
  Port_Activator::Port_Activator (const char *oid,
                                  const char *name,
                                  Type t)
    : oid_ (oid)
    , name_ (name)
    , t_ (t)
  {
  }

  Port_Activator::~Port_Activator (void)
  {
  }

  const char*
  Port_Activator::name (void) const
  {
    // @@ TODO, need to be inlined.
    return this->oid_.in ();
  }
}