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