summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/value/ValueI.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-06-26 13:17:03 +0000
committerMarc Laukien <marc@zeroc.com>2002-06-26 13:17:03 +0000
commit8f1e92b6298f58bb3f9825c7c192d1a731b82f3d (patch)
tree7f905d3aa9b24b1652f6bd1ae5dfedb68313d752 /cpp/demo/Ice/value/ValueI.cpp
parentAdded case-insensitive identifiers. For now, just a warning is issued. With (diff)
downloadice-8f1e92b6298f58bb3f9825c7c192d1a731b82f3d.tar.bz2
ice-8f1e92b6298f58bb3f9825c7c192d1a731b82f3d.tar.xz
ice-8f1e92b6298f58bb3f9825c7c192d1a731b82f3d.zip
fixes
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;
}