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