Index: compiled/ActiveFilter.h |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/compiled/ActiveFilter.h |
@@ -0,0 +1,18 @@ |
+#ifndef ADBLOCKPLUS_ACTIVEFILTER_H |
+#define ADBLOCKPLUS_ACTIVEFILTER_H |
+ |
+#include <string> |
+ |
+#include "tools.h" |
+#include "Filter.h" |
+ |
+class ActiveFilter : public Filter |
+{ |
+public: |
+ ActiveFilter(const std::u16string& text); |
+ FILTER_PROPERTY(bool, disabled); |
+ FILTER_PROPERTY(unsigned int, hitCount); |
+ FILTER_PROPERTY(unsigned int, lastHit); |
+}; |
+ |
+#endif |