00001 // Interpolator.cpp: implementation of the Interpolator class. 00002 // 00004 00005 #include "Interpolator.h" 00006 00008 // Construction/Destruction 00010 namespace Interpolator 00011 { 00012 bool Interpolator::_verb = false; 00014 Interpolator::Interpolator() 00015 { 00016 00017 } 00018 00020 Interpolator::~Interpolator() 00021 { 00022 00023 } 00024 00029 Interpolator::Interpolator( std::string sName, 00030 std::string sDescription, 00031 std::string sInterpolationType) : 00032 _sName(sName),_sDescription(sDescription),_sInterpolationType(sInterpolationType) 00033 { 00034 } 00035 00036 00038 std::string Interpolator::getName() const 00039 { 00040 return _sName; 00041 } 00043 std::string Interpolator::getDescription() const 00044 { 00045 return _sDescription; 00046 } 00047 00049 std::string Interpolator::getInterpolationType() const 00050 { 00051 return _sInterpolationType; 00052 } 00053 } 00054
1.4.5