summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeServerAdminRouter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceGrid/NodeServerAdminRouter.cpp')
-rw-r--r--cpp/src/IceGrid/NodeServerAdminRouter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/NodeServerAdminRouter.cpp b/cpp/src/IceGrid/NodeServerAdminRouter.cpp
index ff983e10434..c1ca29399d0 100644
--- a/cpp/src/IceGrid/NodeServerAdminRouter.cpp
+++ b/cpp/src/IceGrid/NodeServerAdminRouter.cpp
@@ -19,11 +19,11 @@ using namespace std;
namespace
{
-class AMICallback : public AMI_Array_Object_ice_invoke
+class InvokeAMICallback : public AMI_Array_Object_ice_invoke
{
public:
- AMICallback(const AMD_Object_ice_invokePtr& cb) :
+ InvokeAMICallback(const AMD_Object_ice_invokePtr& cb) :
_cb(cb)
{
}
@@ -89,5 +89,5 @@ IceGrid::NodeServerAdminRouter::ice_invoke_async(const AMD_Object_ice_invokePtr&
//
// Call with AMI
//
- target->ice_invoke_async(new AMICallback(cb), current.operation, current.mode, inParams, current.ctx);
+ target->ice_invoke_async(new InvokeAMICallback(cb), current.operation, current.mode, inParams, current.ctx);
}