Debian package version of polhemus's g4term
Janis Streib
30.03.22 00027aa5bb1da6f2d44c03a082988de8c64dab4a
commit | author | age
8c7455 1 // FilterDlg.h
JS 2
3 #ifndef FILTERDLG_H_
4 #define FILTERDLG_H_
5
6 #include "ModDlg.h"
7
8
9 class FilterDlg : public ModalDlg {
10
11  private:
12
13   GtkWidget* m_entry[2][4];
14
15   float m_posFiltVals[4];
16   float m_oriFiltVals[4];
17
18   virtual void update_data();
19
20  public:
21
22   FilterDlg(float*,float*);
23   void GetFilterData(float*,float*);
24
25
26 };
27
28
29 #endif