diff options
author | Joe George <joe@zeroc.com> | 2021-02-03 11:16:06 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2021-02-03 11:42:30 -0500 |
commit | 48f9b28634908c43a23c30e219a9abfb038c1539 (patch) | |
tree | 81420c7142bb57902ad96de1d057b5259c29a287 /cpp/test/IceGrid/update/TestI.h | |
parent | IceGrid and IceStorm fixes (diff) | |
download | ice-48f9b28634908c43a23c30e219a9abfb038c1539.tar.bz2 ice-48f9b28634908c43a23c30e219a9abfb038c1539.tar.xz ice-48f9b28634908c43a23c30e219a9abfb038c1539.zip |
Additional C++11 fixes
Diffstat (limited to 'cpp/test/IceGrid/update/TestI.h')
-rw-r--r-- | cpp/test/IceGrid/update/TestI.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/IceGrid/update/TestI.h b/cpp/test/IceGrid/update/TestI.h index 1fcf402f93d..045914921e1 100644 --- a/cpp/test/IceGrid/update/TestI.h +++ b/cpp/test/IceGrid/update/TestI.h @@ -7,18 +7,18 @@ #include <Test.h> -class TestI : public ::Test::TestIntf +class TestI final : public ::Test::TestIntf { public: - TestI(const Ice::PropertiesPtr&); + TestI(std::shared_ptr<Ice::Properties>&&); - virtual void shutdown(const Ice::Current&); - virtual std::string getProperty(const std::string&, const Ice::Current&); + void shutdown(const Ice::Current&) override; + std::string getProperty(std::string, const Ice::Current&) override; private: - Ice::PropertiesPtr _properties; + std::shared_ptr<Ice::Properties> _properties; }; #endif |