Skip to content
Snippets Groups Projects
Commit c267c990 authored by andy's avatar andy
Browse files

ENH: Converted private->protected for mapped patch member functions

parent 6eae2a65
Branches
Tags
No related merge requests found
......@@ -71,7 +71,10 @@ class mappedFixedValueFvPatchField
:
public fixedValueFvPatchField<Type>
{
// Private data
protected:
// Protected data
//- Name of field to sample - defaults to field associated with this
// patchField if not specified
......@@ -90,7 +93,7 @@ class mappedFixedValueFvPatchField
mutable autoPtr<interpolation<Type> > interpolator_;
// Private Member Functions
// Protected Member Functions
//- Field to sample. Either on my or nbr mesh
const GeometricField<Type, fvPatchField, volMesh>& sampleField() const;
......
......@@ -146,9 +146,9 @@ public:
};
private:
protected:
// Private data
// Protected data
//- Patch to sample
const polyPatch& patch_;
......@@ -199,7 +199,7 @@ private:
dictionary surfDict_;
// Private Member Functions
// Protected Member Functions
//- Collect single list of samples and originating processor+face.
void collectSamples
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment