summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/value/ValueI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/demo/Ice/value/ValueI.cpp')
-rw-r--r--cpp/demo/Ice/value/ValueI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/demo/Ice/value/ValueI.cpp b/cpp/demo/Ice/value/ValueI.cpp
index bd7bee82dd6..4d046bcad1e 100644
--- a/cpp/demo/Ice/value/ValueI.cpp
+++ b/cpp/demo/Ice/value/ValueI.cpp
@@ -30,20 +30,20 @@ InitialI::InitialI(const Ice::ObjectAdapterPtr& adapter) :
}
SimplePtr
-InitialI::simple(const Ice::Current&)
+InitialI::getSimple(const Ice::Current&)
{
return _simple;
}
void
-InitialI::printer(PrinterPtr& impl, PrinterPrx& proxy, const Ice::Current&)
+InitialI::getPrinter(PrinterPtr& impl, PrinterPrx& proxy, const Ice::Current&)
{
impl = _printer;
proxy = _printerProxy;
}
PrinterPtr
-InitialI::derivedPrinter(const Ice::Current&)
+InitialI::getDerivedPrinter(const Ice::Current&)
{
return _derivedPrinter;
}