00001 // Table.cpp: implementation of the Table class. 00002 // 00004 00005 #include "Table.h" 00006 00008 // Construction/Destruction 00010 namespace Interpolator 00011 { 00013 Table::Table() : ComputingObject() 00014 { 00015 00016 } 00017 00018 00020 Table::~Table() 00021 { 00022 00023 } 00024 00030 Table::Table(std::string sName,std::string sDescription,std::string sInterpolationType,std::string sFilePath) : ComputingObject(), 00031 _sName(sName),_sDescription(sDescription),_sInterpolationType(sInterpolationType),_sFilePath(sFilePath) 00032 { 00033 00034 } 00035 00037 std::string Table::getName() const 00038 { 00039 return _sName; 00040 } 00041 00043 std::string Table::getDescription() const 00044 { 00045 return _sDescription; 00046 } 00047 00049 std::string Table::getInterpolationType() const 00050 { 00051 return _sInterpolationType; 00052 } 00053 00055 std::string Table::getFilePath() const 00056 { 00057 return _sFilePath; 00058 } 00059 00060 00061 } 00062
1.4.5