diff options
Diffstat (limited to 'cpp/test/IceGrid/activation/TestI.h')
-rw-r--r-- | cpp/test/IceGrid/activation/TestI.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/IceGrid/activation/TestI.h b/cpp/test/IceGrid/activation/TestI.h index 35dc14c474c..41bf9ea266b 100644 --- a/cpp/test/IceGrid/activation/TestI.h +++ b/cpp/test/IceGrid/activation/TestI.h @@ -7,14 +7,14 @@ #include <Test.h> -class TestI : public ::Test::TestIntf +class TestI final : public Test::TestIntf { public: TestI(); - virtual void fail(const Ice::Current&); - virtual void shutdown(const Ice::Current&); + void fail(const Ice::Current&) override; + void shutdown(const Ice::Current&) override; bool isFailed() const; @@ -22,5 +22,5 @@ private: bool _failed; }; -ICE_DEFINE_PTR(TestIPtr, TestI); + #endif |