summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Swapping_Servant_Home_Impl_Base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Swapping_Servant_Home_Impl_Base.cpp')
-rw-r--r--CIAO/ciao/Swapping_Servant_Home_Impl_Base.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/CIAO/ciao/Swapping_Servant_Home_Impl_Base.cpp b/CIAO/ciao/Swapping_Servant_Home_Impl_Base.cpp
new file mode 100644
index 00000000000..919c70e6df9
--- /dev/null
+++ b/CIAO/ciao/Swapping_Servant_Home_Impl_Base.cpp
@@ -0,0 +1,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 ();
+ }
+
+}