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