00001 00020 #ifndef _PROBLEM_TEST_H 00021 00022 #define _PROBLEM_TEST_H 1 00023 00024 #include <realea/common/problemfactory.h> 00025 00026 namespace realea { 00027 00028 class ProblemTest : public ProblemFactory { 00029 public: 00030 ProblemTest(unsigned int dim); 00031 ~ProblemTest(void); 00032 ProblemPtr get(unsigned int ident=1); 00033 00034 private: 00035 unsigned int m_ndim; 00036 bool m_init; 00037 }; 00038 00039 } 00040 00041 #endif