00001
00011
00012 #ifndef TEST_ALGORITHM_HPP__
00013 #define TEST_ALGORITHM_HPP__
00014
00015 #include "../algorithm.h"
00016
00017 namespace imedgine
00018 {
00019
00031
00032
00033 class TestAlgorithm: public Algorithm
00034 {
00035 public:
00036
00037
00040
00041 TestAlgorithm();
00042
00043
00044
00047
00048 virtual ~TestAlgorithm();
00049
00050
00055
00056 virtual void run();
00057
00058 protected:
00059
00060
00063
00064 TestAlgorithm(TestAlgorithm const& src);
00065
00066 private:
00067
00070
00071 TestAlgorithm& operator = (TestAlgorithm const& src);
00072
00073 };
00074
00075 }
00076
00077 #endif // TEST_ALGORITHM_HPP__
00078