Dashboard
Repositories
filestore
Aktivität
Suche
Login
Janis Streib
/
g4term
Debian package version of polhemus's g4term
Übersicht
Reflog
Commits
Dateibaum
Tickets
Dokumentation
Forks
Vergleichen
Blame
|
Historie
|
Raw
UPD: better ignore, cleanup
Janis Streib
30.03.22
bc34f45ca003196c9d727836dad724646bc37ba6
[~streib/g4term]
/
src
/
ModDlg.h
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