00001 //-------------------------------------------------- 00009 //-------------------------------------------------- 00010 00011 00012 #include "test_configuration.h" 00013 #include <iostream> 00014 00015 namespace imedgine 00016 { 00017 00018 //-------------------------------------------------- 00019 00020 TestConfiguration::TestConfiguration() 00021 { 00022 std::cout << "constructing test algorithm" << std::endl; 00023 } 00024 00025 //-------------------------------------------------- 00026 00027 TestConfiguration::TestConfiguration(TestConfiguration const&) 00028 { 00029 } 00030 00031 //-------------------------------------------------- 00032 00033 TestConfiguration::~TestConfiguration() 00034 { 00035 std::cout << "destroying test algorithm" << std::endl; 00036 } 00037 00038 //-------------------------------------------------- 00039 00040 TestConfiguration& TestConfiguration::operator = (TestConfiguration const&) 00041 { 00042 return *this; 00043 } 00044 00045 } // namespace imedgine