Improved spacing, and removed some unused includes

This commit is contained in:
Jacob Støren 2016-12-16 09:41:22 +01:00
parent fd604f844b
commit e990de8243
2 changed files with 6 additions and 8 deletions

View File

@ -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;

View File

@ -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;