summaryrefslogtreecommitdiff
path: root/trunk/CIAO/ciao/Swapping_Servant_Home_Impl_Base.cpp
blob: 919c70e6df9d8c890934fca83fea8fc3de9e2861 (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
29
30
31
// $Id$

#include "Swapping_Servant_Home_Impl_Base.h"

namespace CIAO
{
  Swapping_Home_Servant_Impl_Base::Swapping_Home_Servant_Impl_Base
    (Swapping_Container * c)
    : container_ (c)
  {
  }

  Swapping_Home_Servant_Impl_Base::~Swapping_Home_Servant_Impl_Base (void)
  {
  }

  // Operations for CCMHome interface.

  CORBA::IRObject_ptr
  Swapping_Home_Servant_Impl_Base::get_component_def (void)
  {
    throw CORBA::NO_IMPLEMENT ();
  }

  CORBA::IRObject_ptr
  Swapping_Home_Servant_Impl_Base::get_home_def (void)
  {
    throw CORBA::NO_IMPLEMENT ();
  }

}