summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/facets/TestI.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-07-17 23:53:29 +0000
committerMarc Laukien <marc@zeroc.com>2002-07-17 23:53:29 +0000
commit60f15d8532ffa9d7b727ea423f5fa7c2fec3021b (patch)
tree139ae55e07d67f043245cf604fddfe328b587eed /cpp/test/Ice/facets/TestI.cpp
parentfile XMLTransform.h was initially added on branch freeze_xml. (diff)
downloadice-60f15d8532ffa9d7b727ea423f5fa7c2fec3021b.tar.bz2
ice-60f15d8532ffa9d7b727ea423f5fa7c2fec3021b.tar.xz
ice-60f15d8532ffa9d7b727ea423f5fa7c2fec3021b.zip
facet path
Diffstat (limited to 'cpp/test/Ice/facets/TestI.cpp')
-rw-r--r--cpp/test/Ice/facets/TestI.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/cpp/test/Ice/facets/TestI.cpp b/cpp/test/Ice/facets/TestI.cpp
index d3fdfe04379..19bdd0692d3 100644
--- a/cpp/test/Ice/facets/TestI.cpp
+++ b/cpp/test/Ice/facets/TestI.cpp
@@ -63,3 +63,14 @@ GI::callG(const Ice::Current&)
{
return "G";
}
+
+HI::HI(const Ice::CommunicatorPtr& communicator) :
+ GI(communicator)
+{
+}
+
+std::string
+HI::callH(const Ice::Current&)
+{
+ return "H";
+}