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.

19 lines
258 B
C

5 years ago
#ifndef _H_LPMAIN_H_
#define _H_LPMAIN_H_
#include "IMainWidget.h"
#include "lpMainWin.h"
class lpMain :public IMainWidget
{
Q_OBJECT
public:
lpMain(QObject *parent = nullptr);
~lpMain();
virtual void showWidget();
5 years ago
public:
lpMainWin m_wid;
};
#endif