mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
clang-tidy : Remove redundant 'virtual' and add 'override'
This commit is contained in:
@@ -67,7 +67,7 @@ class RivFemPartGeometryGenerator : public cvf::Object
|
||||
{
|
||||
public:
|
||||
explicit RivFemPartGeometryGenerator(const RigFemPart* part);
|
||||
~RivFemPartGeometryGenerator();
|
||||
~RivFemPartGeometryGenerator() override;
|
||||
|
||||
// Setup methods
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ class RivFemPartPartMgr: public cvf::Object
|
||||
{
|
||||
public:
|
||||
explicit RivFemPartPartMgr(const RigFemPart* femPart);
|
||||
~RivFemPartPartMgr();
|
||||
~RivFemPartPartMgr() override;
|
||||
void setTransform(cvf::Transform* scaleTransform);
|
||||
void setCellVisibility(cvf::UByteArray* cellVisibilities );
|
||||
cvf::ref<cvf::UByteArray> cellVisibility() { return m_cellVisibility;}
|
||||
|
||||
@@ -28,7 +28,7 @@ class RivFemPickSourceInfo : public cvf::Object
|
||||
{
|
||||
public:
|
||||
RivFemPickSourceInfo(int partIndex, RivFemPartTriangleToElmMapper * triangleToElmMapper);
|
||||
~RivFemPickSourceInfo();
|
||||
~RivFemPickSourceInfo() override;
|
||||
|
||||
int femPartIndex() const { return m_fempartIndex; }
|
||||
const RivFemPartTriangleToElmMapper* triangleToElmMapper() const { return m_triangleToElmMapper.p(); }
|
||||
|
||||
@@ -46,7 +46,7 @@ class RivGeoMechPartMgr: public cvf::Object
|
||||
{
|
||||
public:
|
||||
RivGeoMechPartMgr();
|
||||
~RivGeoMechPartMgr();
|
||||
~RivGeoMechPartMgr() override;
|
||||
|
||||
int initializedFemPartCount() { return static_cast<int>(m_femPartPartMgrs.size());}
|
||||
void clearAndSetReservoir(const RigGeoMechCaseData* geoMechCase);
|
||||
|
||||
@@ -34,7 +34,7 @@ class RivGeoMechPartMgrCache : public cvf::Object
|
||||
{
|
||||
public:
|
||||
RivGeoMechPartMgrCache();
|
||||
~RivGeoMechPartMgrCache();
|
||||
~RivGeoMechPartMgrCache() override;
|
||||
|
||||
class Key
|
||||
{
|
||||
|
||||
@@ -41,7 +41,7 @@ class RivGeoMechVizLogic : public cvf::Object
|
||||
public:
|
||||
|
||||
explicit RivGeoMechVizLogic(RimGeoMechView * geomView);
|
||||
virtual ~RivGeoMechVizLogic();
|
||||
~RivGeoMechVizLogic() override;
|
||||
|
||||
void appendNoAnimPartsToModel(cvf::ModelBasicList* model);
|
||||
void appendPartsToModel(int timeStepIndex, cvf::ModelBasicList* model);
|
||||
|
||||
Reference in New Issue
Block a user