21 lines
549 B
C++
21 lines
549 B
C++
/*
|
|
* SerializeableMatcherIF.h
|
|
*
|
|
* Created on: 09.03.2015
|
|
* Author: baetz
|
|
*/
|
|
|
|
#ifndef FRAMEWORK_GLOBALFUNCTIONS_MATCHING_SERIALIZEABLEMATCHERIF_H_
|
|
#define FRAMEWORK_GLOBALFUNCTIONS_MATCHING_SERIALIZEABLEMATCHERIF_H_
|
|
|
|
#include <framework/globalfunctions/matching/MatcherIF.h>
|
|
#include <framework/serialize/SerializeIF.h>
|
|
|
|
template<typename T>
|
|
class SerializeableMatcherIF : public MatcherIF<T>, public SerializeIF {
|
|
public:
|
|
virtual ~SerializeableMatcherIF() {}
|
|
};
|
|
|
|
#endif /* FRAMEWORK_GLOBALFUNCTIONS_MATCHING_SERIALIZEABLEMATCHERIF_H_ */
|