summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Dynamic_Component_Servant_Base.cpp
blob: 16a9f40ea3a1327c05260ef0c76f644cc9305b24 (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
#include "Dynamic_Component_Servant_Base.h"
#include "CIAO_common.h"
#include "ace/Log_Msg.h"
#include "ace/OS_NS_string.h"

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

namespace CIAO
{
  Dynamic_Component_Servant_Base::Dynamic_Component_Servant_Base (void)
    : container_ (0)
  {
    ACE_ASSERT (0);
  }

  Dynamic_Component_Servant_Base::Dynamic_Component_Servant_Base
    (Session_Container * c)
    : container_ (c)
  {
  }

  Dynamic_Component_Servant_Base::~Dynamic_Component_Servant_Base (void)
  {
  }
}