From edc1fd182e0aca1c8e33788063f36be4e7e142fe Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Sat, 12 Feb 2011 17:23:12 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@173 ed2142bd-67ad-457f-ba7c-d818d4011675 --- pre_estimater/pre_estimater.hpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pre_estimater/pre_estimater.hpp (limited to 'pre_estimater/pre_estimater.hpp') diff --git a/pre_estimater/pre_estimater.hpp b/pre_estimater/pre_estimater.hpp new file mode 100644 index 0000000..db21e94 --- /dev/null +++ b/pre_estimater/pre_estimater.hpp @@ -0,0 +1,29 @@ +#ifndef PRE_ESTIMATER_HPP +#define PRE_ESTIMATER_HPP + +#include + + +namespace opt_utilities +{ + template + class pre_estimater + { + private: + virtual void do_estimate(fitter& fit)const=0; + virtual pre_estimater* do_clone()const=0; + public: + void estimate(fitter& fit)const + { + do_estimate(fit); + } + + pre_estimater* clone()const + { + return this->do_clone(); + } + }; +} + + +#endif -- cgit v1.2.2