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.
21 lines
457 B
C++
21 lines
457 B
C++
#ifndef _H_CALLBACKFUNC_H_
|
|
#define _H_CALLBACKFUNC_H_
|
|
|
|
#include "lp_singleton_base.h"
|
|
#include "iCoreCtrl.h"
|
|
/*全局回调函数指针*/
|
|
class lpCallBackFunc : public lp_singleton_base< lpCallBackFunc>
|
|
{
|
|
|
|
public:
|
|
lpCallBackFunc() {};
|
|
~lpCallBackFunc() {};
|
|
|
|
public:
|
|
FuncCallBack_VarInt m_GetVariantCallBackFunc;//检测算法传输函数
|
|
FuncCallBack_StrMap m_ResultCallBackFunc;//检测结果回调函数
|
|
FuncCallBack_StrImg m_ImageCallBackFunc;//图像获取回调函数
|
|
};
|
|
|
|
#endif
|