Update of /cvsroot/quantlibaddin/QuantLibAddin/qlo
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv2043/qlo
Modified Files:
interpolation.cpp interpolation.hpp
Log Message:
Index: interpolation.hpp
===================================================================
RCS file: /cvsroot/quantlibaddin/QuantLibAddin/qlo/interpolation.hpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** interpolation.hpp 19 Jun 2006 11:00:33 -0000 1.9
--- interpolation.hpp 19 Jun 2006 11:07:12 -0000 1.10
***************
*** 31,38 ****
ForwardFlatType
};
! }
!
! namespace QuantLibAddin {
!
class Extrapolator :
public ObjHandler::LibraryObject<QuantLib::Extrapolator> {
--- 31,35 ----
ForwardFlatType
};
!
class Extrapolator :
public ObjHandler::LibraryObject<QuantLib::Extrapolator> {
***************
*** 61,65 ****
LinearInterpolation(const std::vector<double>& x,
const std::vector<double>& y,
! QuantLib::LinearInterpolationType type);
private:
std::vector<double> x_, y_;
--- 58,62 ----
LinearInterpolation(const std::vector<double>& x,
const std::vector<double>& y,
! QuantLibAddin::LinearInterpolationType type);
private:
std::vector<double> x_, y_;
Index: interpolation.cpp
===================================================================
RCS file: /cvsroot/quantlibaddin/QuantLibAddin/qlo/interpolation.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** interpolation.cpp 13 Jun 2006 18:56:56 -0000 1.6
--- interpolation.cpp 19 Jun 2006 11:07:12 -0000 1.7
***************
*** 54,58 ****
const std::vector<double>& x,
const std::vector<double>& y,
! QuantLib::LinearInterpolationType type) : x_(x), y_(y) {
QL_REQUIRE(x.size()==y.size(), "unmatched x/y");
--- 54,58 ----
const std::vector<double>& x,
const std::vector<double>& y,
! QuantLibAddin::LinearInterpolationType type) : x_(x), y_(y) {
QL_REQUIRE(x.size()==y.size(), "unmatched x/y");
|