Debian package version of polhemus's g4display
Janis Streib
30.03.22 48e3f3ec6672ba89420338fdfa76018e46750c9e
commit | author | age
69b66f 1 // ModDlg.h
JS 2
3 #ifndef _MODDLG_H_
4 #define _MODDLG_H_
5
6
7 class ModalDlg {
8
9  protected:
10
11   GtkWidget* m_dlg;
12   virtual void update_data()=0;
13
14  public:
15
16   ModalDlg(){}
17   int present_dlg();
18
19 };
20
21 #endif