mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
removed transfer; delegate to List instead
This commit is contained in:
@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@ -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;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user