summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/value/ValueI.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-11-29 16:26:33 +0000
committerMarc Laukien <marc@zeroc.com>2001-11-29 16:26:33 +0000
commit5651a067168fb1ada7c2fe38202c0d954f731609 (patch)
tree5c9bcbf29d2d3a97e8c5b0e9e774cce28222c2a3 /cpp/demo/Ice/value/ValueI.cpp
parentinitial check-in (diff)
downloadice-5651a067168fb1ada7c2fe38202c0d954f731609.tar.bz2
ice-5651a067168fb1ada7c2fe38202c0d954f731609.tar.xz
ice-5651a067168fb1ada7c2fe38202c0d954f731609.zip
more current/context stuff
Diffstat (limited to 'cpp/demo/Ice/value/ValueI.cpp')
-rw-r--r--cpp/demo/Ice/value/ValueI.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/demo/Ice/value/ValueI.cpp b/cpp/demo/Ice/value/ValueI.cpp
index 4d16ffe175a..702aabc1b99 100644
--- a/cpp/demo/Ice/value/ValueI.cpp
+++ b/cpp/demo/Ice/value/ValueI.cpp
@@ -30,26 +30,26 @@ InitialI::InitialI(const Ice::ObjectAdapterPtr& adapter) :
}
SimplePtr
-InitialI::simple()
+InitialI::simple(const Ice::Current&)
{
return _simple;
}
void
-InitialI::printer(PrinterPtr& impl, PrinterPrx& proxy)
+InitialI::printer(PrinterPtr& impl, PrinterPrx& proxy, const Ice::Current&)
{
impl = _printer;
proxy = _printerProxy;
}
PrinterPtr
-InitialI::derivedPrinter()
+InitialI::derivedPrinter(const Ice::Current&)
{
return _derivedPrinter;
}
void
-InitialI::throwDerivedPrinter()
+InitialI::throwDerivedPrinter(const Ice::Current&)
{
DerivedPrinterException ex;
ex.derived = _derivedPrinter;
@@ -57,7 +57,7 @@ InitialI::throwDerivedPrinter()
}
void
-PrinterI::printBackwards()
+PrinterI::printBackwards(const Ice::Current&)
{
string s;
s.resize(_message.length());
@@ -66,7 +66,7 @@ PrinterI::printBackwards()
}
void
-DerivedPrinterI::printUppercase()
+DerivedPrinterI::printUppercase(const Ice::Current&)
{
string s;
s.resize(_derivedMessage.length());