FilterObject.h
1 /** 2 * @file FilterObject.h 3 * @author Rene Ceska xceska06 (xceska06@stud.fit.vutbr.cz) 4 * @brief Base class for all filter objects 5 * @date 2023-11-19 6 */ 7 #ifndef FILTER_OBJECT_H 8 #define FILTER_OBJECT_H 9 #include "inc/ber_helper_functions.h" 10 11 #include <vector> 12 13 /** 14 * @brief base class for all filter objects 15 * 16 */ 17 class FilterObject { 18 public: 19 virtual filterTypes getFilterType(); 20 virtual ~FilterObject(); 21 }; 22 23 24 #endif