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
414 B
C++
23 lines
414 B
C++
#ifndef QTADPOLELOADCORECTRL_H
|
|
#define QTADPOLELOADCORECTRL_H
|
|
|
|
#include "iCoreCtrl.h"
|
|
|
|
#define _USE_LIB_CORECTRL_DLL
|
|
|
|
class QTadpoleLoadCoreCtrl
|
|
{
|
|
public:
|
|
QTadpoleLoadCoreCtrl(const char* szPath, CORE_CTRL_IN_PARAM* pInParam);
|
|
~QTadpoleLoadCoreCtrl();
|
|
public:
|
|
ICoreCtrl* m_pIcc;
|
|
private:
|
|
#ifdef _USE_LIB_CORECTRL_DLL
|
|
class CLoadModule* m_pLib;
|
|
#endif
|
|
|
|
};
|
|
|
|
#endif // QTADPOLELOADCORECTRL_H
|