Janis Streib
31.12.21 4244cc39faacd894ee57beb9cc5135ffbafbf6e2
commit | author | age
4244cc 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