24 lines
442 B
C++
24 lines
442 B
C++
#pragma execution_character_set("utf-8")
|
||
#include "CertiUIFunction.h"
|
||
#include "MessageHandle.h"
|
||
|
||
#define BIND(func) std::bind(&CertiUIFunction::func, this, std::placeholders::_1)
|
||
|
||
CertiUIFunction::CertiUIFunction()
|
||
{
|
||
ccsMessageHandle* message_handle = ccsMessageHandle::instance();
|
||
//message_handle->register_callback(, )
|
||
|
||
}
|
||
|
||
CertiUIFunction::~CertiUIFunction()
|
||
{
|
||
|
||
}
|
||
|
||
//CertiUIFunction做前后端交互,业务放在CertiModel
|
||
|
||
|
||
|
||
|