00001
00002
00004
00005 #if !defined(AFX_TFLOWMODEL_H__01776BC7_BC11_47E9_9460_607B15C1808A__INCLUDED_)
00006 #define AFX_TFLOWMODEL_H__01776BC7_BC11_47E9_9460_607B15C1808A__INCLUDED_
00007
00008 #if _MSC_VER > 1000
00009 #pragma once
00010 #endif // _MSC_VER > 1000
00011
00012 #include "TFlowData1.h"
00013 #include "TGeometryData.h"
00014 #include <qstring.h>
00015
00017
00022 class TFlowModel
00023 {
00024 private:
00025 TFlowData** flowData;
00026 TGeometryData* geomData;
00027
00028 public:
00029 float getInterpolatedDataAt(TKoo3d<float>& pos, int dataSet,int time);
00030 TFlowData* getFlowData(int slice)
00031 {
00032 return flowData[slice];
00033 }
00034 TGeometryData* getGeomData()
00035 {
00036 return geomData;
00037 }
00038 TFlowModel(QString& modelName);
00039 virtual ~TFlowModel();
00040
00041 };
00042
00043 #endif // !defined(AFX_TFLOWMODEL_H__01776BC7_BC11_47E9_9460_607B15C1808A__INCLUDED_)