summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h
deleted file mode 100644
index 9913cc8c8c9..00000000000
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// -*- C++ -*-
-//=============================================================================
-/**
- * @file activate_with_id.h
- *
- * $Id$
- *
- * @author Huang-Ming Huang <hh1@cse.wustl.edu>
- */
-//=============================================================================
-#ifndef ACTIVATE_WITH_ID_H
-#define ACTIVATE_WITH_ID_H
-
-#include "tao/Versioned_Namespace.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template<class T>
-void
-activate_object_with_id (T * &result,
- PortableServer::POA_ptr poa,
- PortableServer::ServantBase *servant,
- const FtRtecEventComm::ObjectId &oid
- ACE_ENV_ARG_DECL)
-{
- const PortableServer::ObjectId& id =
- reinterpret_cast<const PortableServer::ObjectId&> (oid);
- poa->activate_object_with_id(id,
- servant
- ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
-
- CORBA::Object_var object =
- poa->id_to_reference(id
- ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
-
- result = T::_narrow(object.in() ACE_ENV_ARG_PARAMETER);
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#endif