00001 /* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** 00002 * Qwt Widget Library 00003 * Copyright (C) 1997 Josef Wilgen 00004 * Copyright (C) 2002 Uwe Rathmann 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the Qwt License, Version 1.0 00008 *****************************************************************************/ 00009 00010 #include "qwt_curve_fitter.h" 00011 00016 QwtCurveFitter::QwtCurveFitter( Mode mode ): 00017 d_mode( mode ) 00018 { 00019 } 00020 00022 QwtCurveFitter::~QwtCurveFitter() 00023 { 00024 } 00025 00027 QwtCurveFitter::Mode QwtCurveFitter::mode() const 00028 { 00029 return d_mode; 00030 }