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