00001
00006 #ifndef _LinearMethod_h
00007 #define _LinearMethod_h
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include "Method.h"
00019
00020
00021
00022
00023
00024 class LinearMethod
00025 : public Method
00026 {
00027 public:
00028
00029
00032 ~LinearMethod(void);
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00058 virtual bool CanHandle(const ProblemBase* pProblem) const;
00059
00060 protected:
00061
00064 LinearMethod(void);
00065
00066 private:
00067 };
00068
00069
00070
00071
00072
00073
00074
00075 #endif // _Method_h_