Renamed base class RimCase to RimEclipseCase

To make room for a RimCase base class that can be used as base class for
RimGeoMechCase as well.
This commit is only the class rename not the file rename.
This commit is contained in:
Jacob Støren
2015-05-15 08:40:27 +02:00
parent 750fc5182c
commit 223f8385d2
38 changed files with 164 additions and 164 deletions

View File

@@ -30,7 +30,7 @@
class RimCaseCollection;
class RimStatisticsCase;
class RimCase;
class RimEclipseCase;
class RigMainGrid;
class RigActiveCellInfo;
@@ -52,16 +52,16 @@ public:
caf::PdmField<RimCaseCollection*> caseCollection;
caf::PdmField<RimCaseCollection*> statisticsCaseCollection;
void addCase(RimCase* reservoir);
void removeCase(RimCase* reservoir);
void addCase(RimEclipseCase* reservoir);
void removeCase(RimEclipseCase* reservoir);
bool contains(RimCase* reservoir) const;
bool canCaseBeAdded(RimCase* reservoir) const;
bool contains(RimEclipseCase* reservoir) const;
bool canCaseBeAdded(RimEclipseCase* reservoir) const;
RimStatisticsCase* createAndAppendStatisticsCase();
RimCase* mainCase();
RimEclipseCase* mainCase();
void loadMainCaseAndActiveCellInfo();
RigMainGrid* mainGrid();