00001 //-------------------------------------------------- 00009 //-------------------------------------------------- 00010 00011 #ifndef TEST_CONFIGURATION_H_ 00012 #define TEST_CONFIGURATION_H_ 00013 00014 #include "../configuration.h" 00015 00016 namespace imedgine 00017 { 00018 00019 //-------------------------------------------------- 00030 //-------------------------------------------------- 00031 00032 class TestConfiguration: public Configuration 00033 { 00034 public: 00035 00036 //-------------------------------------------------- 00039 00040 TestConfiguration(); 00041 00042 00043 //-------------------------------------------------- 00046 00047 virtual ~TestConfiguration(); 00048 00049 protected: 00050 00051 //-------------------------------------------------- 00054 00055 TestConfiguration(TestConfiguration const& src); 00056 00057 private: 00058 //-------------------------------------------------- 00061 00062 TestConfiguration& operator = (TestConfiguration const& src); 00063 00064 }; // class TestConfiguration 00065 00066 } // namespace imedgine 00067 00068 #endif // TEST_CONFIGURATION_H_ 00069