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 _H_LPMAIN_H_
|
|
#define _H_LPMAIN_H_
|
|
|
|
#include "IMainWidget.h"
|
|
#include "CMainWin.h"
|
|
class lpMain :public IMainWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
lpMain(QObject *parent = nullptr);
|
|
~lpMain();
|
|
virtual void showWidget();
|
|
|
|
public:
|
|
CMainWin m_wid;
|
|
};
|
|
|
|
#endif
|