cpp-interview/DesignPattern/AdapterPattern/target.h

17 lines
306 B
C++

//
// Created by xiemenghui on 2018/7/20.
//
#ifndef DESIGNPATTERN_TARGET_H
#define DESIGNPATTERN_TARGET_H
// Sockets provided by Russia
class IRussiaSocket
{
public:
// Use both feet to charge in a round shape (not implemented yet)
virtual void Charge() = 0;
};
#endif //DESIGNPATTERN_TARGET_H