c++回調之應用sink示例。本站提示廣大學習愛好者:(c++回調之應用sink示例)文章只能為提供參考,不一定能成為您想要的結果。以下是c++回調之應用sink示例正文
// cbBysink.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "cbBysink.h"
/************************************************************************/
/* 下層回調函數 */
/************************************************************************/
class CMyWork : public baseCallBack
{
public:
CMyWork()
{
// 注冊回調
CWork::registercallback(this);
}
// 回調注冊完成
void CallbackFunction(int a, int b)
{
cout << "a = " << a << ",b = " << b << "\n" << endl;
return;
}
// 觸發還調
void makefunction(int a, int b)
{
CWork::makecallback(a, b);
return;
}
protected:
private:
};
int main(int argc, char* argv[])
{
CMyWork c_mywork;
// 觸發的時刻不須要停止靜態注冊
c_mywork.makefunction(5, 6);
return 0;
}