mirror of
https://github.com/huihut/interview.git
synced 2024-03-22 13:10:48 +08:00
18 lines
329 B
C
18 lines
329 B
C
|
//
|
||
|
// Created by xiemenghui on 2018/7/21.
|
||
|
//
|
||
|
|
||
|
#ifndef DESIGNPATTERN_OBSERVERMAIN_H
|
||
|
#define DESIGNPATTERN_OBSERVERMAIN_H
|
||
|
|
||
|
#include "concrete_subject.h"
|
||
|
#include "concrete_observer.h"
|
||
|
|
||
|
#ifndef SAFE_DELETE
|
||
|
#define SAFE_DELETE(p) { if(p){delete(p); (p)=nullptr;} }
|
||
|
#endif
|
||
|
|
||
|
void ObserverMain();
|
||
|
|
||
|
#endif //DESIGNPATTERN_OBSERVERMAIN_H
|