Function1: Rationalized the stream output

This commit is contained in:
Henry Weller
2016-02-08 21:43:56 +00:00
parent 15cd7c14fc
commit ef649ba984
11 changed files with 5 additions and 186 deletions

View File

@ -27,26 +27,6 @@ License
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
template<class Type>
Foam::Ostream& Foam::operator<<
(
Ostream& os,
const Function1Types::TableBase<Type>& tbl
)
{
os << static_cast<const Function1<Type>&>(tbl);
os << token::SPACE << tbl.table_;
// Check state of Ostream
os.check
(
"Ostream& operator<<(Ostream&, const TableBase<Type>&, const bool)"
);
return os;
}
template<class Type>
void Foam::Function1Types::TableBase<Type>::writeData(Ostream& os) const
{