You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef QMODIFYDLG_H
|
|
#define QMODIFYDLG_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_qmodifydlg.h"
|
|
|
|
class QModifyDlg : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QModifyDlg(QWidget *parent = 0);
|
|
~QModifyDlg();
|
|
void setModelName(QString &strName);
|
|
private:
|
|
Ui::QModifyDlg ui;
|
|
};
|
|
|
|
#endif // QMODIFYDLG_H
|