templated uniformInterpolationTable

This commit is contained in:
andy
2009-10-26 19:15:32 +00:00
parent 7e34048c59
commit c9a2f4923e
7 changed files with 76 additions and 52 deletions

View File

@ -72,7 +72,7 @@ protected:
word invertedTableName_;
//- Inverted table
uniformInterpolationTable invertedTable_;
uniformInterpolationTable<scalar> invertedTable_;
public:
@ -121,7 +121,8 @@ public:
inline const word& invertedTableName() const;
//- Return the inverted table
inline const uniformInterpolationTable& invertedTable() const;
inline const uniformInterpolationTable<scalar>&
invertedTable() const;
// I-O

View File

@ -35,7 +35,7 @@ Foam::tabulatedWallFunctions::tabulatedWallFunction::invertedTableName() const
}
inline const Foam::uniformInterpolationTable&
inline const Foam::uniformInterpolationTable<Foam::scalar>&
Foam::tabulatedWallFunctions::tabulatedWallFunction::invertedTable() const
{
return invertedTable_;