valSPH
 All Classes Files Functions Variables
DisplayVTK.h
Go to the documentation of this file.
1 
10 #ifndef __DisplayVTK_h__
11 #define __DisplayVTK_h__
12 
13 
14 #include <vector>
15 #include "Particle.h"
16 #include "Display.h"
17 
18 
19 using namespace std;
20 
21 
22 class DisplayVTK : public Display {
23 
24 
25  private:
26 
27 
28  public:
29 
33  DisplayVTK();
34 
35 
42  void addSimulationState(vector<Particle> particles, int cycle);
43 
44 
48  ~DisplayVTK();
49 
50 
51 };
52 
53 
54 #endif