summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/inheritance/TestI.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-12-09 23:09:20 +0100
committerJose <jose@zeroc.com>2015-12-09 23:09:20 +0100
commita00673a2c1d9634102f91b7c6ebdd453d55a708f (patch)
tree2097f43ff5a1516b353ed0e88cc7b4174a518a17 /cpp/test/Ice/inheritance/TestI.cpp
parentWindows build fixes (diff)
downloadice-a00673a2c1d9634102f91b7c6ebdd453d55a708f.tar.bz2
ice-a00673a2c1d9634102f91b7c6ebdd453d55a708f.tar.xz
ice-a00673a2c1d9634102f91b7c6ebdd453d55a708f.zip
C++11 mapping server side input parameter fixes
Diffstat (limited to 'cpp/test/Ice/inheritance/TestI.cpp')
-rw-r--r--cpp/test/Ice/inheritance/TestI.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/test/Ice/inheritance/TestI.cpp b/cpp/test/Ice/inheritance/TestI.cpp
index 59da259eb00..378b52a766e 100644
--- a/cpp/test/Ice/inheritance/TestI.cpp
+++ b/cpp/test/Ice/inheritance/TestI.cpp
@@ -13,49 +13,49 @@
using namespace Test;
MA::CAPrxPtr
-CAI_::caop(const MA::CAPrxPtr& p, const Ice::Current&)
+CAI_::caop(ICE_IN(MA::CAPrxPtr) p, const Ice::Current&)
{
return p;
}
MB::CBPrxPtr
-CBI::cbop(const MB::CBPrxPtr& p, const Ice::Current&)
+CBI::cbop(ICE_IN(MB::CBPrxPtr) p, const Ice::Current&)
{
return p;
}
MA::CCPrxPtr
-CCI::ccop(const MA::CCPrxPtr& p, const Ice::Current&)
+CCI::ccop(ICE_IN(MA::CCPrxPtr) p, const Ice::Current&)
{
return p;
}
MA::CDPrxPtr
-CDI::cdop(const MA::CDPrxPtr& p, const Ice::Current&)
+CDI::cdop(ICE_IN(MA::CDPrxPtr) p, const Ice::Current&)
{
return p;
}
MA::IAPrxPtr
-IAI::iaop(const MA::IAPrxPtr& p, const Ice::Current&)
+IAI::iaop(ICE_IN(MA::IAPrxPtr) p, const Ice::Current&)
{
return p;
}
MB::IB1PrxPtr
-IB1I::ib1op(const MB::IB1PrxPtr& p, const Ice::Current&)
+IB1I::ib1op(ICE_IN(MB::IB1PrxPtr) p, const Ice::Current&)
{
return p;
}
MB::IB2PrxPtr
-IB2I::ib2op(const MB::IB2PrxPtr& p, const Ice::Current&)
+IB2I::ib2op(ICE_IN(MB::IB2PrxPtr) p, const Ice::Current&)
{
return p;
}
MA::ICPrxPtr
-ICI::icop(const MA::ICPrxPtr& p, const Ice::Current&)
+ICI::icop(ICE_IN(MA::ICPrxPtr) p, const Ice::Current&)
{
return p;
}