Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 #ifndef ADBLOCK_PLUS_ACTIVE_FILTER_H | |
2 #define ADBLOCK_PLUS_ACTIVE_FILTER_H | |
3 | |
4 #include <string> | |
5 | |
6 #include "Filter.h" | |
7 #include "api.h" | |
8 | |
9 class ActiveFilter : public Filter | |
10 { | |
11 public: | |
12 explicit ActiveFilter(const std::u16string& text); | |
13 FILTER_PROPERTY(bool, disabled, GetDisabled, SetDisabled); | |
14 FILTER_PROPERTY(unsigned int, hitCount, GetHitCount, SetHitCount); | |
15 FILTER_PROPERTY(unsigned int, lastHit, GetLastHit, SetLastHit); | |
16 }; | |
17 | |
18 #endif | |
OLD | NEW |