Janis Streib
30.03.22 bc34f45ca003196c9d727836dad724646bc37ba6
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