mirror of
https://github.com/huihut/interview.git
synced 2024-03-22 13:10:48 +08:00
17 lines
306 B
C++
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
|