#ifndef LIN1D_ESTIMATER #define LIN1D_ESTIMATER #include "pre_estimater.hpp" #include #include #include namespace opt_utilities { template class lin1d_estimater :public pre_estimater,std::string> { private: lin1d_estimater() { } lin1d_estimater do_clone()const { return new lin1d_estimater(*this); } void do_estimate(const data& d,model,std::string>& m)const { } }; } #endif