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.

23 lines
313 B
C

#ifndef _LPDEBUGUI_H_
#define _LPDEBUGUI_H_
#include <QWidget>
#include "ui_lpDebugUI.h"
class lpDebugUI : public QWidget
{
Q_OBJECT
public:
lpDebugUI(QWidget *parent = Q_NULLPTR);
~lpDebugUI();
Q_SLOT void onButtonClicked();
signals:
void sgButtonClicked(int ID);
private:
Ui::lpDebugUI ui;
};
#endif