summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Swapping_Servant_Home_Impl_Base.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Swapping_Servant_Home_Impl_Base.h')
-rw-r--r--CIAO/ciao/Swapping_Servant_Home_Impl_Base.h67
1 files changed, 0 insertions, 67 deletions
diff --git a/CIAO/ciao/Swapping_Servant_Home_Impl_Base.h b/CIAO/ciao/Swapping_Servant_Home_Impl_Base.h
deleted file mode 100644
index 5e118476f18..00000000000
--- a/CIAO/ciao/Swapping_Servant_Home_Impl_Base.h
+++ /dev/null
@@ -1,67 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Swapping_Servant_Home_Impl_Base.h
- *
- * $Id$
- *
- */
-//=============================================================================
-
-
-#ifndef CIAO_SWAPPING_SERVANT_HOME_IMPL_BASE_H
-#define CIAO_SWAPPING_SERVANT_HOME_IMPL_BASE_H
-
-#include /**/ "ace/pre.h"
-
-#include "CCM_HomeS.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ciao/CIAO_Server_Export.h"
-
-namespace CIAO
-{
- class Swapping_Container;
-
- /**
- * @class Swapping_Home_Servant_Impl_Base
- *
- */
- // @@ Jai, why are you inheriting from "home" here? What is the
- // point?
- // @@ JAI, probably my class naming convention was the problem.
- // This is a home implementation and that is why inheriting from
- // "home".
- //
- class CIAO_SERVER_Export Swapping_Home_Servant_Impl_Base
- : public virtual POA_Components::CCMHome
- {
- public:
- Swapping_Home_Servant_Impl_Base (Swapping_Container * c);
-
- virtual ~Swapping_Home_Servant_Impl_Base (void);
-
- // Operations for CCMHome interface.
- virtual ::CORBA::IRObject_ptr
- get_component_def (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- virtual ::CORBA::IRObject_ptr
- get_home_def (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- protected:
- Swapping_Container *container_;
- private:
- /// Not to be used
- Swapping_Home_Servant_Impl_Base (void);
- };
-}
-
-#include /**/ "ace/post.h"
-
-#endif /* CIAO_SWAPPING_SERVANT_HOME_IMPL_BASE_H */