Virtual Testbed
Ship dynamics simulator for extreme conditions
WindWindow.hh
1 #ifndef VTESTBED_GUI_WINDWINDOW_HH
2 #define VTESTBED_GUI_WINDWINDOW_HH
3 
4 #include <vtestbed/gui/InputNumber.hh>
5 #include <vtestbed/gui/Window.hh>
6 
7 namespace vtb {
8 
9  namespace gui {
10 
11  template <class T>
12  class WindWindow: public Window {
13 
14  private:
15  InputNumber<T> _c1_x;
16  InputNumber<T> _c1_y;
17  InputNumber<T> _c1_z;
18  InputNumber<T> _c2_x;
19  InputNumber<T> _c2_y;
20  InputNumber<T> _c2_z;
21  InputNumber<T> _sigma;
22 
23  public:
24  explicit WindWindow();
25  inline void step() { }
26  void draw();
27 
28  };
29 
30  }
31 
32 }
33 
34 #endif // vim:filetype=cpp
Main namespace.
Definition: convert.hh:9