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