From ebc40a49b72833a0fe53da1e00f9c2cc6e4346f5 Mon Sep 17 00:00:00 2001 From: Austin Henriksen Date: Tue, 7 May 2024 11:51:39 -0400 Subject: [PATCH] Fixed C++ test header files. --- cpp/test/Ice/operations/TestAMDI.h | 8 -------- cpp/test/Ice/operations/TestI.h | 8 -------- 2 files changed, 16 deletions(-) diff --git a/cpp/test/Ice/operations/TestAMDI.h b/cpp/test/Ice/operations/TestAMDI.h index 45a8a0c6337..e98af8fbe8b 100644 --- a/cpp/test/Ice/operations/TestAMDI.h +++ b/cpp/test/Ice/operations/TestAMDI.h @@ -12,14 +12,6 @@ class MyDerivedClassI final : public Test::MyDerivedClass public: MyDerivedClassI(); - // - // Override the Object "pseudo" operations to verify the operation mode. - // - bool ice_isA(std::string, const Ice::Current&) const; - void ice_ping(const Ice::Current&) const; - std::vector ice_ids(const Ice::Current&) const; - std::string ice_id(const Ice::Current&) const; - void shutdownAsync(std::function, std::function, const Ice::Current&) final; void supportsCompressAsync(std::function, std::function, const Ice::Current&) diff --git a/cpp/test/Ice/operations/TestI.h b/cpp/test/Ice/operations/TestI.h index e4d99b8a4a1..422476fe280 100644 --- a/cpp/test/Ice/operations/TestI.h +++ b/cpp/test/Ice/operations/TestI.h @@ -12,14 +12,6 @@ class MyDerivedClassI final : public Test::MyDerivedClass public: MyDerivedClassI(); - // - // Override the Object "pseudo" operations to verify the operation mode. - // - bool ice_isA(std::string, const Ice::Current&) const final; - void ice_ping(const Ice::Current&) const final; - std::vector ice_ids(const Ice::Current&) const final; - std::string ice_id(const Ice::Current&) const final; - void shutdown(const Ice::Current&) final; bool supportsCompress(const Ice::Current&) final;