mirror of
https://github.com/huihut/interview.git
synced 2024-03-22 13:10:48 +08:00
22 lines
336 B
C
22 lines
336 B
C
//
|
|
// Created by xiemenghui on 2018/7/20.
|
|
//
|
|
|
|
#ifndef DESIGNPATTERN_ADAPTERMAIN_H
|
|
#define DESIGNPATTERN_ADAPTERMAIN_H
|
|
|
|
#include "adapter.h"
|
|
|
|
void AdapterMain()
|
|
{
|
|
// 创建适配器
|
|
IRussiaSocket * pAdapter = new PowerAdapter();
|
|
|
|
// 充电
|
|
pAdapter->Charge();
|
|
|
|
SAFE_DELETE(pAdapter);
|
|
}
|
|
|
|
#endif //DESIGNPATTERN_ADAPTERMAIN_H
|