00001 /* 00002 * INotifiable.h 00003 * 00004 * Created on: 28-11-2010 00005 * Author: marcin 00006 */ 00007 00008 #ifndef INOTIFIABLE_H_ 00009 #define INOTIFIABLE_H_ 00010 00011 00012 #include "ISubject.h" 00013 00014 class INotifiable 00015 { 00016 public: 00017 virtual void processNotification(ISubject *subject)=0; 00018 ~INotifiable(){}; 00019 }; 00020 00021 00022 #endif /* INOTIFIABLE_H_ */