Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

HAnalysisModel.h
Go to the documentation of this file.
1 // HAnalysisModel.h : interface of the HAnalysisModel.cpp class, derived from HBaseModel
2 // Adds application-specific data and members for each model
3 
4 #ifndef _HAnalysisModel_H
5 #define _HAnalysisModel_H
6 
7 #include "HDB.h"
8 #include "HBaseModel.h"
9 #include "HUtility.h"
10 #include "HUtilityGeometryCreation.h"
11 #include "HTools.h"
12 
16 class HAnalysisModel : public HBaseModel
17 {
18 public:
19 
21  virtual ~HAnalysisModel();
22 
24  void Init();
25 
26  // Overrides
27  HFileInputResult Read(const char * FileName);
28  bool Write(const char * FileName, HBaseView * pHView, int version, int width = 0, int height = 0);
29  bool IsSolidModel(){ return m_bSolidModel; };
30 
31  int m_DataCycles;
32  HShellVertexData m_ShellVertexData;
33 
34 
35 protected:
36 
37  // do we have any solid modeler entities
39 
40 };
41 
42 #endif
43 
44 
45 
46 
virtual ~HAnalysisModel()
bool Write(const char *FileName, HBaseView *pHView, int version, int width=0, int height=0)
HFileInputResult Read(const char *FileName)
int m_DataCycles
number of datacycles for the contour animation
Definition: HAnalysisModel.h:29
bool IsSolidModel()
Definition: HAnalysisModel.h:29
bool m_bSolidModel
Definition: HAnalysisModel.h:38
HShellVertexData m_ShellVertexData
pointer to the data structure that will store the color index data
Definition: HAnalysisModel.h:32
Definition: HAnalysisModel.h:16