summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/LoadBalancing/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/LoadBalancing/client.cpp')
-rw-r--r--TAO/orbsvcs/tests/LoadBalancing/client.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/tests/LoadBalancing/client.cpp b/TAO/orbsvcs/tests/LoadBalancing/client.cpp
index d4c936ef07c..caa1037153e 100644
--- a/TAO/orbsvcs/tests/LoadBalancing/client.cpp
+++ b/TAO/orbsvcs/tests/LoadBalancing/client.cpp
@@ -4,14 +4,14 @@
// TAO Load Balancer test client
-#include "Hash_ReplicaC.h"
+#include "HasherC.h"
#include "ace/Get_Opt.h"
#include "ace/Stats.h"
#include "ace/High_Res_Timer.h"
static void run_test (int iterations,
int timeout,
- Hash_Replica_ptr hasher,
+ Hasher_ptr hasher,
CORBA::Environment &ACE_TRY_ENV);
int
@@ -64,9 +64,9 @@ main (int argc, char *argv[])
orb->string_to_object (ior, ACE_TRY_ENV);
ACE_TRY_CHECK;
- Hash_Replica_var hasher =
- Hash_Replica::_unchecked_narrow (obj.in (),
- ACE_TRY_ENV);
+ Hasher_var hasher =
+ Hasher::_unchecked_narrow (obj.in (),
+ ACE_TRY_ENV);
ACE_TRY_CHECK;
if (CORBA::is_nil (hasher.in ()))
@@ -92,7 +92,7 @@ main (int argc, char *argv[])
void
run_test (int iterations,
int timeout,
- Hash_Replica_ptr hasher,
+ Hasher_ptr hasher,
CORBA::Environment &ACE_TRY_ENV)
{
ACE_Time_Value tv (0, timeout * 1000);