summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Object.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2005-05-13 07:37:50 +0000
committerMichi Henning <michi@zeroc.com>2005-05-13 07:37:50 +0000
commit16147878fabbf704b873a21faf58027cdeebf2fb (patch)
tree10b503bbe23efdf404df2239009e620b04b7acc9 /cpp/src/Ice/Object.cpp
parentuse /bin/kill not /usr/bin/kill (diff)
downloadice-16147878fabbf704b873a21faf58027cdeebf2fb.tar.bz2
ice-16147878fabbf704b873a21faf58027cdeebf2fb.tar.xz
ice-16147878fabbf704b873a21faf58027cdeebf2fb.zip
__in -> __inS, __out -> __outS See
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=322
Diffstat (limited to 'cpp/src/Ice/Object.cpp')
-rw-r--r--cpp/src/Ice/Object.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp
index 44ee8c07361..a4c419f5dc6 100644
--- a/cpp/src/Ice/Object.cpp
+++ b/cpp/src/Ice/Object.cpp
@@ -111,10 +111,10 @@ Ice::Object::ice_postUnmarshal()
}
DispatchStatus
-Ice::Object::___ice_isA(Incoming& __in, const Current& __current)
+Ice::Object::___ice_isA(Incoming& __inS, const Current& __current)
{
- BasicStream* __is = __in.is();
- BasicStream* __os = __in.os();
+ BasicStream* __is = __inS.is();
+ BasicStream* __os = __inS.os();
string __id;
__is->read(__id);
bool __ret = ice_isA(__id, __current);
@@ -130,18 +130,18 @@ Ice::Object::___ice_ping(Incoming&, const Current& __current)
}
DispatchStatus
-Ice::Object::___ice_ids(Incoming& __in, const Current& __current)
+Ice::Object::___ice_ids(Incoming& __inS, const Current& __current)
{
- BasicStream* __os = __in.os();
+ BasicStream* __os = __inS.os();
vector<string> __ret = ice_ids(__current);
__os->write(__ret);
return DispatchOK;
}
DispatchStatus
-Ice::Object::___ice_id(Incoming& __in, const Current& __current)
+Ice::Object::___ice_id(Incoming& __inS, const Current& __current)
{
- BasicStream* __os = __in.os();
+ BasicStream* __os = __inS.os();
string __ret = ice_id(__current);
__os->write(__ret);
return DispatchOK;
@@ -222,32 +222,32 @@ Ice::Object::__read(BasicStream* __is, bool __rid)
}
void
-Ice::Object::__write(const OutputStreamPtr& __out) const
+Ice::Object::__write(const OutputStreamPtr& __outS) const
{
- __out->writeTypeId(ice_staticId());
- __out->startSlice();
- __out->writeSize(0); // For compatibility with the old AFM.
- __out->endSlice();
+ __outS->writeTypeId(ice_staticId());
+ __outS->startSlice();
+ __outS->writeSize(0); // For compatibility with the old AFM.
+ __outS->endSlice();
}
void
-Ice::Object::__read(const InputStreamPtr& __in, bool __rid)
+Ice::Object::__read(const InputStreamPtr& __inS, bool __rid)
{
if(__rid)
{
- __in->readTypeId();
+ __inS->readTypeId();
}
- __in->startSlice();
+ __inS->startSlice();
// For compatibility with the old AFM.
- Int sz = __in->readSize();
+ Int sz = __inS->readSize();
if(sz != 0)
{
throw Ice::MarshalException(__FILE__, __LINE__);
}
- __in->endSlice();
+ __inS->endSlice();
}
void