removed transfer; delegate to List instead

This commit is contained in:
mattijs 2008-10-30 15:40:31 +00:00
parent 4b90cc4c11
commit 1fb786eb6a
2 changed files with 0 additions and 20 deletions

View File

@ -575,20 +575,6 @@ void Field<Type>::replace
} }
template<class Type>
void Field<Type>::transfer(Field<Type>& f)
{
List<Type>::transfer(f);
}
template<class Type>
void Field<Type>::transfer(List<Type>& lst)
{
List<Type>::transfer(lst);
}
template<class Type> template<class Type>
tmp<Field<Type> > Field<Type>::T() const tmp<Field<Type> > Field<Type>::T() const
{ {

View File

@ -297,12 +297,6 @@ public:
//- Replace a component field of the field //- Replace a component field of the field
void replace(const direction, const cmptType&); void replace(const direction, const cmptType&);
//- Transfer the contents of the argument Field into this Field
void transfer(Field<Type>&);
//- Transfer the contents of the argument List into this Field
void transfer(List<Type>&);
//- Return the field transpose (only defined for second rank tensors) //- Return the field transpose (only defined for second rank tensors)
tmp<Field<Type> > T() const; tmp<Field<Type> > T() const;