blob: 4c9bf918e1eba38469938fbc28bb71916f996905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef UDM_MAIN_H
#define UDM_MAIN_H
#include <QMainWindow>
class udm_main : public QMainWindow
{
Q_OBJECT
public:
udm_main(QWidget *parent = 0);
~udm_main();
};
#endif // UDM_MAIN_H
|