Files
ResInsight/ApplicationCode/ModelVisualization/RivReservoirWellSpheresPartMgr.h

49 lines
1.4 KiB
C
Raw Normal View History

2016-12-06 11:40:08 +01:00
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2016- Statoil ASA
2016-12-06 11:40:08 +01:00
//
// ResInsight is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.
//
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "cvfBase.h"
2016-12-06 11:40:08 +01:00
#include "cvfCollection.h"
#include "cvfVector3.h"
#include "cafPdmPointer.h"
2016-12-06 11:40:08 +01:00
namespace cvf
{
class ModelBasicList;
}
class RimEclipseView;
class RivWellSpheresPartMgr;
2016-12-06 11:40:08 +01:00
class RivReservoirWellSpheresPartMgr : public cvf::Object
{
public:
explicit RivReservoirWellSpheresPartMgr(RimEclipseView* reservoirView);
2016-12-06 11:40:08 +01:00
~RivReservoirWellSpheresPartMgr();
void clearGeometryCache();
2016-12-06 11:40:08 +01:00
void appendDynamicGeometryPartsToModel(cvf::ModelBasicList* model, size_t frameIndex);
private:
caf::PdmPointer<RimEclipseView> m_reservoirView;
cvf::Collection< RivWellSpheresPartMgr > m_wellSpheresPartMgrs;
2016-12-06 11:40:08 +01:00
};