#ifndef __JFIT__JESTIMATOR__ #define __JFIT__JESTIMATOR__ #include "JLang/JException.hh" /** * \file * Linear fit methods. * \author mdejong */ namespace JFIT {} namespace JPP { using namespace JFIT; } namespace JFIT { using JLANG::JValueOutOfRange; /** * Template definition of linear fit. * The template argument refers to the model that should be fitted to the data. */ template class JEstimator; } #endif