mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: add value_type to pointPatchField
This commit is contained in:
committed by
Andrew Heather
parent
f964bb301c
commit
2d7bad2d2e
@ -54,27 +54,18 @@ SourceFiles
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// Forward declaration of classes
|
||||
// Forward declarations
|
||||
|
||||
class objectRegistry;
|
||||
class dictionary;
|
||||
class pointPatchFieldMapper;
|
||||
class pointMesh;
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
template<class Type> class pointPatchField;
|
||||
template<class Type> class calculatedPointPatchField;
|
||||
|
||||
template<class Type>
|
||||
class pointPatchField;
|
||||
|
||||
template<class Type>
|
||||
class calculatedPointPatchField;
|
||||
|
||||
template<class Type>
|
||||
Ostream& operator<<
|
||||
(
|
||||
Ostream&,
|
||||
const pointPatchField<Type>&
|
||||
);
|
||||
Ostream& operator<<(Ostream&, const pointPatchField<Type>&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
@ -104,6 +95,7 @@ class pointPatchField
|
||||
|
||||
public:
|
||||
|
||||
typedef Type value_type;
|
||||
typedef pointPatch Patch;
|
||||
typedef calculatedPointPatchField<Type> Calculated;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user