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