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