summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/Servants/Port_Activator.cpp
blob: 35f7b3981d06c2ca8144e0945329099cb4acc18a (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
#include "Port_Activator.h"

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

#if !defined (__ACE_INLINE__)
# include "Port_Activator.inl"
#endif /* __ACE_INLINE__ */

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

  Port_Activator_i::~Port_Activator_i (void)
  {
  }
}