Well Log Plot and Well Distribution Plots no longer inherit Multiplot

* Also cleaned up RiuQwtPlotWidget
This commit is contained in:
Gaute Lindkvist
2020-01-16 12:32:40 +01:00
parent 2044b99818
commit edc276db4d
70 changed files with 1568 additions and 1215 deletions

View File

@@ -20,7 +20,7 @@
#include "cafPdmChildArrayField.h"
#include "cafPdmObject.h"
class RimMultiPlotWindow;
class RimMultiPlot;
//==================================================================================================
///
@@ -36,10 +36,10 @@ public:
void deleteAllChildObjects();
std::vector<RimMultiPlotWindow*> multiPlots() const;
RimMultiPlotWindow* createMultiPlot();
void addMultiPlot( RimMultiPlotWindow* plot );
std::vector<RimMultiPlot*> multiPlots() const;
RimMultiPlot* createMultiPlot();
void addMultiPlot( RimMultiPlot* plot );
private:
caf::PdmChildArrayField<RimMultiPlotWindow*> m_multiPlots;
caf::PdmChildArrayField<RimMultiPlot*> m_multiPlots;
};