From 559713a5d1a0cbe65ebc27d7ffcb3e4f5fb364a1 Mon Sep 17 00:00:00 2001 From: thrall Date: Tue, 15 Jul 2003 18:20:27 +0000 Subject: Made destructor non-inline --- TAO/orbsvcs/tests/EC_Config/TestConfig.cpp | 11 +++++++++++ TAO/orbsvcs/tests/EC_Config/TestConfig.h | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 TAO/orbsvcs/tests/EC_Config/TestConfig.cpp diff --git a/TAO/orbsvcs/tests/EC_Config/TestConfig.cpp b/TAO/orbsvcs/tests/EC_Config/TestConfig.cpp new file mode 100644 index 00000000000..37be921b867 --- /dev/null +++ b/TAO/orbsvcs/tests/EC_Config/TestConfig.cpp @@ -0,0 +1,11 @@ +// $Id$ + +#include /**/ "TestConfig.h" + +namespace TestConfig { + +Test_Config::~Test_Config (void) +{ +} + +} /* namespace TestConfig */ diff --git a/TAO/orbsvcs/tests/EC_Config/TestConfig.h b/TAO/orbsvcs/tests/EC_Config/TestConfig.h index 8294348537f..4067ce2e18b 100644 --- a/TAO/orbsvcs/tests/EC_Config/TestConfig.h +++ b/TAO/orbsvcs/tests/EC_Config/TestConfig.h @@ -97,9 +97,9 @@ class Test_Config { // implementing this interface would be used to configure the EC in that case. // public: - Test_Config (void) {}; + Test_Config (void) {} - virtual ~Test_Config (void) {}; + virtual ~Test_Config (void); virtual int configure (TCFG_SET_WPTR configs) = 0; // Configures the back-end. Each test_config_t in the set specifies -- cgit v1.2.1