资源简介

观察者模式 c++ 工程角度实现

资源截图

代码片段和文件信息

#include “CBloger.h“
#include “gloabal.h“

CBloger::CBloger()
{
SetClassTypeID(BLOG_READER);
}
CBloger::~CBloger()
{
}
void CBloger::Publish(const string &strContent)
{
cout << “bloger Publish : “ << strContent << endl;
SetChanged();
Notify(const_cast(strContent.c_str()));
}

评论

共有 条评论