// // Copyright (c) ZeroC, Inc. All rights reserved. // #include #include TestI::TestI(std::shared_ptr properties) : _properties(move(properties)) { } void TestI::shutdown(const Ice::Current& current) { current.adapter->getCommunicator()->shutdown(); } std::string TestI::getProperty(std::string name, const Ice::Current&) { return _properties->getProperty(name); }