diff options
Diffstat (limited to 'cpp/test/IceGrid/allocation/TestI.h')
-rw-r--r-- | cpp/test/IceGrid/allocation/TestI.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/IceGrid/allocation/TestI.h b/cpp/test/IceGrid/allocation/TestI.h index 1fcf402f93d..e6edeef7abd 100644 --- a/cpp/test/IceGrid/allocation/TestI.h +++ b/cpp/test/IceGrid/allocation/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 |