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.

24 lines
380 B
C

#ifndef _H_QPLCINDEXUI_H_
#define _H_QPLCINDEXUI_H_
#include <QDialog>
#include "ui_QPLCIndexUI.h"
class QPLCIndexUI : public QDialog
{
Q_OBJECT
public:
QPLCIndexUI(QWidget *parent = Q_NULLPTR);
~QPLCIndexUI();
void setModelName(QString strName);
void setModelIndex(int val);
int getModelIndex();
Q_SLOT void onButtonClicked();
private:
Ui::QPLCIndexUI ui;
};
#endif