⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inotificationsuscriber.h

📁 VIGASOCO (VIdeo GAmes SOurce COde) Windows port (v0.01)
💻 H
字号:
// INotificationSuscriber.h
//
//	Observer interface used to notify subject changes (Observer pattern)
//
//	How to use it: class MyObserver: public INotificationSuscriber<MySubject>
//
/////////////////////////////////////////////////////////////////////////////

#ifndef _INOTIFICATION_SUSCRIBER_H_
#define _INOTIFICATION_SUSCRIBER_H_


template <typename T>
class INotificationSuscriber
{
// methods
public:
	INotificationSuscriber(){}
	virtual ~INotificationSuscriber(){}
	virtual void update(T* subject, int data) = 0;
};


#endif	// _INOTIFICATION_SUSCRIBER_H_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -