Added access function to polyMeshGen in cartesianMeshGenerator

This commit is contained in:
Vuko Vukcevic 2018-12-12 16:16:31 +01:00
parent c49e3b210f
commit 2afc0297bc

View file

@ -140,6 +140,12 @@ public:
//- write the mesh
void writeMesh() const;
//- Access to polyMeshGen member
const polyMeshGen& mesh() const
{
return mesh_;
}
};