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
382 B
C

#ifndef CDLLDETECTORENGINE_H
#define CDLLDETECTORENGINE_H
#include "lpbengine.h"
class CDllDetectorEngine
{
public:
CDllDetectorEngine();
~CDllDetectorEngine();
public:
bool Initialize(class ICoreCtrl* pCoreCtrl);
void Quit();
private:
IDetectorEngine *m_pDE;
QLibrary m_lib;
class ICoreCtrl* m_pCoreCtrl;
friend class QMainFilter;
};
#endif // CDLLDETECTORENGINE_H