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.
18 lines
318 B
C++
18 lines
318 B
C++
#ifndef CDLLDETECTORENGINE_H
|
|
#define CDLLDETECTORENGINE_H
|
|
|
|
#include "lpbengine.h"
|
|
#include "zclasses.h"
|
|
|
|
class CDllDetectorEngine
|
|
{
|
|
public:
|
|
CDllDetectorEngine();
|
|
~CDllDetectorEngine();
|
|
public:
|
|
IDetectorEngine* m_pDE{ nullptr };
|
|
class CDllLoaderM* m_pLibEngineCtrl{ nullptr };
|
|
};
|
|
|
|
#endif // CDLLDETECTORENGINE_H
|