COMP: add value_type to pointPatchField

This commit is contained in:
Mark Olesen
2019-11-20 20:35:44 +01:00
committed by Andrew Heather
parent f964bb301c
commit 2d7bad2d2e

View File

@ -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;