mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fixed missing includes on Linux
This commit is contained in:
@@ -18,14 +18,16 @@
|
|||||||
|
|
||||||
#include "RimFlowCharacteristicsPlot.h"
|
#include "RimFlowCharacteristicsPlot.h"
|
||||||
|
|
||||||
#include "RimFlowDiagSolution.h"
|
|
||||||
#include "RimEclipseResultCase.h"
|
|
||||||
|
|
||||||
#include "RigFlowDiagResults.h"
|
#include "RigFlowDiagResults.h"
|
||||||
|
|
||||||
#include "RiuFlowCharacteristicsPlot.h"
|
#include "RimEclipseResultCase.h"
|
||||||
|
#include "RimFlowDiagSolution.h"
|
||||||
#include "RimProject.h"
|
#include "RimProject.h"
|
||||||
|
|
||||||
|
#include "RiuFlowCharacteristicsPlot.h"
|
||||||
|
|
||||||
|
#include <cmath> // Needed for HUGE_VAL on Linux
|
||||||
|
|
||||||
|
|
||||||
CAF_PDM_SOURCE_INIT(RimFlowCharacteristicsPlot, "FlowCharacteristicsPlot");
|
CAF_PDM_SOURCE_INIT(RimFlowCharacteristicsPlot, "FlowCharacteristicsPlot");
|
||||||
|
|
||||||
|
|||||||
@@ -29,6 +29,8 @@
|
|||||||
#include "RigFlowDiagResultFrames.h"
|
#include "RigFlowDiagResultFrames.h"
|
||||||
#include "RigStatisticsDataCache.h"
|
#include "RigStatisticsDataCache.h"
|
||||||
|
|
||||||
|
#include <cmath> // Needed for HUGE_VAL on Linux
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@@ -673,3 +675,12 @@ std::vector<int> RigFlowDiagResults::calculatedTimeSteps()
|
|||||||
|
|
||||||
return timestepIndices;
|
return timestepIndices;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
RigFlowDiagResults::FlowCharacteristicsResultFrame::FlowCharacteristicsResultFrame()
|
||||||
|
: m_lorenzCoefficient(HUGE_VAL)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
@@ -19,6 +19,10 @@
|
|||||||
|
|
||||||
#include "RigFlowDiagResultAddress.h"
|
#include "RigFlowDiagResultAddress.h"
|
||||||
|
|
||||||
|
#include "RimFlowDiagSolution.h"
|
||||||
|
|
||||||
|
#include "cafPdmPointer.h"
|
||||||
|
|
||||||
#include "cvfBase.h"
|
#include "cvfBase.h"
|
||||||
#include "cvfObject.h"
|
#include "cvfObject.h"
|
||||||
|
|
||||||
@@ -26,9 +30,6 @@
|
|||||||
#include <map>
|
#include <map>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "cafPdmPointer.h"
|
|
||||||
#include "RimFlowDiagSolution.h"
|
|
||||||
|
|
||||||
class RigFlowDiagResultFrames;
|
class RigFlowDiagResultFrames;
|
||||||
class RigStatisticsDataCache;
|
class RigStatisticsDataCache;
|
||||||
class RigFlowDiagSolverInterface;
|
class RigFlowDiagSolverInterface;
|
||||||
@@ -66,7 +67,7 @@ public:
|
|||||||
|
|
||||||
struct FlowCharacteristicsResultFrame
|
struct FlowCharacteristicsResultFrame
|
||||||
{
|
{
|
||||||
FlowCharacteristicsResultFrame() : m_lorenzCoefficient(HUGE_VAL) {}
|
FlowCharacteristicsResultFrame();
|
||||||
|
|
||||||
using Curve = std::pair< std::vector<double>, std::vector<double> >;
|
using Curve = std::pair< std::vector<double>, std::vector<double> >;
|
||||||
|
|
||||||
|
|||||||
@@ -23,6 +23,9 @@
|
|||||||
|
|
||||||
#include "qwt_plot_curve.h"
|
#include "qwt_plot_curve.h"
|
||||||
#include "qwt_date_scale_draw.h"
|
#include "qwt_date_scale_draw.h"
|
||||||
|
|
||||||
|
#include <float.h> // For DBL_MAX
|
||||||
|
|
||||||
#include <QEvent>
|
#include <QEvent>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user