c++回调之利用sink示例
本文导语: 代码如下:// cbBysink.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include "cbBysink.h" /************************************************************************//* 上层回调函数 ...
// 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