diff options
Diffstat (limited to 'cpp/test/Ice/facets/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/facets/TestI.cpp | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/cpp/test/Ice/facets/TestI.cpp b/cpp/test/Ice/facets/TestI.cpp new file mode 100644 index 00000000000..550bf39b878 --- /dev/null +++ b/cpp/test/Ice/facets/TestI.cpp @@ -0,0 +1,65 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#include <Ice/Ice.h> +#include <TestI.h> + +std::string +AI::callA() +{ + return "A"; +} + +std::string +BI::callB() +{ + return "B"; +} + +std::string +CI::callC() +{ + return "C"; +} + +std::string +DI::callD() +{ + return "D"; +} + +std::string +EI::callE() +{ + return "E"; +} + +std::string +FI::callF() +{ + return "F"; +} + +GI::GI(const Ice::CommunicatorPtr& communicator) : + _communicator(communicator) +{ +} + +void +GI::shutdown() +{ + _communicator->shutdown(); +} + +std::string +GI::callG() +{ + return "G"; +} |