Janitor : Avoid include of header file in header

This commit is contained in:
Magne Sjaastad
2021-05-26 11:31:47 +02:00
parent 3fca5f15ae
commit 9d58769f89
29 changed files with 140 additions and 105 deletions

View File

@@ -25,6 +25,7 @@
#include "RifSummaryReaderInterface.h"
#include "RigSimWellData.h"
#include "RigWellResultPoint.h"
#include "Rim3dView.h"
#include "RimEclipseResultCase.h"
@@ -100,11 +101,11 @@ bool RimSimWellInViewTools::isInjector( RimSimWellInView* well )
if ( wRes->hasWellResult( currentTimeStep ) )
{
const RigWellResultFrame& wrf = wRes->wellResultFrame( currentTimeStep );
const RigWellResultFrame* wrf = wRes->wellResultFrame( currentTimeStep );
if ( wrf.m_productionType == RiaDefines::WellProductionType::OIL_INJECTOR ||
wrf.m_productionType == RiaDefines::WellProductionType::GAS_INJECTOR ||
wrf.m_productionType == RiaDefines::WellProductionType::WATER_INJECTOR )
if ( wrf->m_productionType == RiaDefines::WellProductionType::OIL_INJECTOR ||
wrf->m_productionType == RiaDefines::WellProductionType::GAS_INJECTOR ||
wrf->m_productionType == RiaDefines::WellProductionType::WATER_INJECTOR )
{
return true;
}