Today's the day. Renamed platform to framework.
This commit is contained in:
16
globalfunctions/matching/MatcherIF.h
Normal file
16
globalfunctions/matching/MatcherIF.h
Normal file
@ -0,0 +1,16 @@
|
||||
#ifndef MATCHERIF_H_
|
||||
#define MATCHERIF_H_
|
||||
|
||||
template<typename T>
|
||||
class MatcherIF {
|
||||
public:
|
||||
virtual ~MatcherIF() {
|
||||
}
|
||||
|
||||
virtual bool match(T number) {
|
||||
return false;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
#endif /* MATCHERIF_H_ */
|
Reference in New Issue
Block a user