14 lines
180 B
C
14 lines
180 B
C
|
#ifndef POSDLG_H
|
||
|
#define POSDLG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
class PosDlg : public QDialog {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit PosDlg(QWidget *parent = nullptr);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // POSDLG_H
|