Debian package version of polhemus's g4term
Janis Streib
30.03.22 00027aa5bb1da6f2d44c03a082988de8c64dab4a
commit | author | age
8c7455 1 // IncrDlg.h
JS 2
3 #ifndef INCRDLG_H_
4 #define INCRDLG_H_
5
6 #include "ModDlg.h"
7
8 class IncrDlg : public ModalDlg {
9
10  private:
11   float m_posIncr;
12   float m_oriIncr;
13   GtkWidget* m_entry_p;
14   GtkWidget* m_entry_o;
15
16   virtual void update_data();
17
18  public:
19
20   IncrDlg(float,float);
21   void get_increments(float&,float&);
22
23 };
24
25 #endif