|
//
|
|
// Created by 29019 on 2019/12/30.
|
|
//
|
|
|
|
#ifndef GENERAL_STRATERGY_H
|
|
|
|
#include <functional>
|
|
|
|
using namespace std;
|
|
template <typename T> class Stratergy{
|
|
public:
|
|
virtual int Handler(T){
|
|
return 0;
|
|
}
|
|
private:
|
|
};
|
|
#define GENERAL_STRATERGY_H
|
|
|
|
#endif //GENERAL_STRATERGY_H
|