summaryrefslogtreecommitdiff
path: root/cpp/test/Freeze/dbmap/Client.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-02-13 00:47:50 +0000
committerMark Spruiell <mes@zeroc.com>2002-02-13 00:47:50 +0000
commit8df1c85f81b1586570c47060a6d8ae7eaf6d33b9 (patch)
tree77768fb509cf428dc90a34872970eeddedd4122e /cpp/test/Freeze/dbmap/Client.cpp
parentminor fixes (diff)
downloadice-8df1c85f81b1586570c47060a6d8ae7eaf6d33b9.tar.bz2
ice-8df1c85f81b1586570c47060a6d8ae7eaf6d33b9.tar.xz
ice-8df1c85f81b1586570c47060a6d8ae7eaf6d33b9.zip
revising Stream.ice to remove out params
Diffstat (limited to 'cpp/test/Freeze/dbmap/Client.cpp')
-rw-r--r--cpp/test/Freeze/dbmap/Client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Freeze/dbmap/Client.cpp b/cpp/test/Freeze/dbmap/Client.cpp
index 79b522fbcc4..f249c6cc237 100644
--- a/cpp/test/Freeze/dbmap/Client.cpp
+++ b/cpp/test/Freeze/dbmap/Client.cpp
@@ -42,7 +42,7 @@ public:
string data(bytes.begin(), bytes.end());
istringstream is(data);
Ice::StreamPtr stream = new ::IceXML::StreamI(communicator, is, false);
- stream->readByte("Key", key);
+ key = stream->readByte("Key");
}
};
@@ -70,7 +70,7 @@ public:
string data(bytes.begin(), bytes.end());
istringstream is(data);
Ice::StreamPtr stream = new ::IceXML::StreamI(communicator, is, false);
- stream->readInt("Value", value);
+ value = stream->readInt("Value");
}
};