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.
26 lines
516 B
C++
26 lines
516 B
C++
#ifndef QDETECTORDESIGNERMGR_H
|
|
#define QDETECTORDESIGNERMGR_H
|
|
|
|
#include ".\lpbengine.h"
|
|
#include ".\lpdesigner.h"
|
|
#include <QObject>
|
|
|
|
class CDllDesigner : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CDllDesigner();
|
|
virtual ~CDllDesigner();
|
|
bool Initialize(IDetectorEngine* lpDE);
|
|
|
|
IDetectorUI * GetDesignerInterface() const;
|
|
virtual void OnManualTrigger();
|
|
|
|
signals:
|
|
void sgCloseWindow();
|
|
private:
|
|
class CDllLoaderM* m_pLibDesigner{ nullptr };
|
|
IDetectorUI *m_pDesigner{ nullptr };
|
|
};
|
|
|
|
#endif // QDETECTORDESIGNERMGR_H
|