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.
19 lines
338 B
C++
19 lines
338 B
C++
#ifndef CDLLCORECTRL_H
|
|
#define CDLLCORECTRL_H
|
|
|
|
#include "iCoreCtrl.h"
|
|
#include "zclasses.h"
|
|
|
|
class CDllCoreCtrl
|
|
{
|
|
public:
|
|
CDllCoreCtrl(const ZStringList& szDllPaths);
|
|
~CDllCoreCtrl();
|
|
public:
|
|
class CDllLoaderM* m_pLibCoreCtrl;
|
|
ICoreCtrl* m_pCoreCtrl;
|
|
ZStringList m_szDllPaths;
|
|
};
|
|
|
|
#endif // CDLLCORECTRL_H
|