summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ObjectGroup_Hash.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ObjectGroup_Hash.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ObjectGroup_Hash.inl25
1 files changed, 0 insertions, 25 deletions
diff --git a/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ObjectGroup_Hash.inl b/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ObjectGroup_Hash.inl
deleted file mode 100644
index fe12be1ad3f..00000000000
--- a/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ObjectGroup_Hash.inl
+++ /dev/null
@@ -1,25 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-ACE_INLINE CORBA::ULong
-TAO_LB_ObjectGroup_Hash::operator() (
- const TAO_LoadBalancing::ObjectGroup_ptr &object_group) const
-{
- CORBA::ULong max = 4294967295UL; // Maximum 32-bit unsigned integer
- return object_group->_hash (max);
-}
-
-// -------------------------------------------------------------------
-
-ACE_INLINE CORBA::ULong
-TAO_LB_FactoryCreationId_Hash::operator() (
- const TAO_LoadBalancing::FactoryCreationId &factory_creation_id) const
-{
- // A Load Balancer FactoryCreationId is simply a CORBA::ULong.
-
- CORBA::ULong id;
- factory_creation_id >>= id;
-
- return id;
-}