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