mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Improved spacing, and removed some unused includes
This commit is contained in:
parent
fd604f844b
commit
e990de8243
@ -51,9 +51,9 @@ public:
|
||||
}
|
||||
|
||||
RigFemResultPosEnum resultPosType;
|
||||
std::string fieldName;
|
||||
std::string componentName;
|
||||
int timeLapseBaseFrameIdx;
|
||||
std::string fieldName;
|
||||
std::string componentName;
|
||||
int timeLapseBaseFrameIdx;
|
||||
|
||||
static const int ALL_TIME_LAPSES = -2;
|
||||
|
||||
|
@ -20,12 +20,10 @@
|
||||
#pragma once
|
||||
#include "cvfObject.h"
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
//==================================================================================================
|
||||
///
|
||||
//==================================================================================================
|
||||
class RigStatisticsDataCache;
|
||||
|
||||
class RigFemScalarResultFrames: public cvf::Object
|
||||
{
|
||||
@ -33,11 +31,11 @@ public:
|
||||
RigFemScalarResultFrames(int frameCount);
|
||||
virtual ~RigFemScalarResultFrames();
|
||||
|
||||
void enableAsSingleFrameResult();
|
||||
void enableAsSingleFrameResult();
|
||||
|
||||
std::vector<float>& frameData(size_t frameIndex);
|
||||
std::vector<float>& frameData(size_t frameIndex);
|
||||
const std::vector<float>& frameData(size_t frameIndex) const;
|
||||
int frameCount() const;
|
||||
int frameCount() const;
|
||||
|
||||
private:
|
||||
std::vector< std::vector<float> > m_dataForEachFrame;
|
||||
|
Loading…
Reference in New Issue
Block a user