diff options
author | Marc Laukien <marc@zeroc.com> | 2002-07-17 23:53:29 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-07-17 23:53:29 +0000 |
commit | 60f15d8532ffa9d7b727ea423f5fa7c2fec3021b (patch) | |
tree | 139ae55e07d67f043245cf604fddfe328b587eed /cpp/test/Ice/facets/TestI.cpp | |
parent | file XMLTransform.h was initially added on branch freeze_xml. (diff) | |
download | ice-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.cpp | 11 |
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"; +} |