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()
|
|||
|
{
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
IRussiaSocket * pAdapter = new PowerAdapter();
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
pAdapter->Charge();
|
|||
|
|
|||
|
SAFE_DELETE(pAdapter);
|
|||
|
}
|
|||
|
|
|||
|
#endif //DESIGNPATTERN_ADAPTERMAIN_H
|