(#401) WIP: CaseToCase mapper creation.

Now only the mapping generation is missing
This commit is contained in:
Jacob Støren
2015-09-15 09:15:15 +02:00
parent 57ff5becbc
commit f092c4daef
4 changed files with 172 additions and 10 deletions

View File

@@ -23,10 +23,14 @@
#include "cafPdmObject.h"
#include "cafPdmPtrField.h"
#include "cvfBase.h"
#include "cvfObject.h"
class RimView;
class RimEclipseView;
class RimGeoMechView;
class RimViewLinker;
class RigCaseToCaseCellMapper;
//==================================================================================================
///
@@ -45,8 +49,11 @@ public:
RimView* managedView();
void setManagedView(RimView* view);
RimView* masterView();
RimViewLinker* ownerViewLinker();
const RigCaseToCaseCellMapper* cellMapper();
// Linked (both ways) properties
caf::PdmField<bool> syncCamera;
caf::PdmField<bool> syncTimeStep;
@@ -83,4 +90,6 @@ private:
caf::PdmPtrField<RimView*> m_managedView;
QIcon m_originalIcon;
cvf::ref<RigCaseToCaseCellMapper> m_caseToCaseCellMapper;
};