source/inc/numeric/cellfuncobj.hxx

Go to the documentation of this file.
00001 /*************************************************************************
00002  *
00003  *  The Contents of this file are made available subject to
00004  *  the terms of GNU Lesser General Public License Version 2.1.
00005  *
00006  *
00007  *    GNU Lesser General Public License Version 2.1
00008  *    =============================================
00009  *    Copyright 2005 by Kohei Yoshida.
00010  *    1039 Kingsway Dr., Apex, NC 27502, USA
00011  *
00012  *    This library is free software; you can redistribute it and/or
00013  *    modify it under the terms of the GNU Lesser General Public
00014  *    License version 2.1, as published by the Free Software Foundation.
00015  *
00016  *    This library is distributed in the hope that it will be useful,
00017  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00019  *    Lesser General Public License for more details.
00020  *
00021  *    You should have received a copy of the GNU Lesser General Public
00022  *    License along with this library; if not, write to the Free Software
00023  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
00024  *    MA  02111-1307  USA
00025  *
00026  ************************************************************************/
00027 
00028 #ifndef _SCSOLVER_NUMERIC_CELLFUNCOBJ_HXX_
00029 #define _SCSOLVER_NUMERIC_CELLFUNCOBJ_HXX_
00030 
00031 #include "numeric/funcobj.hxx"
00032 #include "unoglobal.hxx"
00033 #include <memory>
00034 #include <vector>
00035 #include <string>
00036 
00037 namespace com { namespace sun { namespace star { namespace table {
00038         class CellAddress;
00039 }}}}
00040 
00041 namespace scsolver {
00042 
00043 class CalcInterface;
00044 
00045 namespace numeric { 
00046 
00047 struct CellFuncObjImpl;
00048 
00049 class CellFuncObj : public BaseFuncObj
00050 {
00051 public:
00052         CellFuncObj( ::scsolver::CalcInterface* pCalc );
00053         virtual ~CellFuncObj() throw();
00054 
00055     virtual const ::std::vector<double>& getVars() const;
00056 
00057     virtual void setVars(const std::vector<double>& vars) const;
00058 
00059     virtual void setVar(size_t index,  double var) const;
00060 
00061     virtual double eval() const;
00062 
00068         virtual const std::string getFuncString() const;
00069 
00070         void setTargetCell( const ::com::sun::star::table::CellAddress& addr );
00071         void appendDecVarCell( const ::com::sun::star::table::CellAddress& addr );
00072 
00073 private:
00074         CellFuncObj();
00075 
00076     ::std::vector<double> mFakeVars;
00077     ::std::auto_ptr<CellFuncObjImpl> m_pImpl;
00078 };
00079 
00080 
00081 }}
00082 
00083 #endif

Generated on Mon Jul 28 09:13:20 2008 for scsolver by  doxygen 1.5.3