OLD | NEW |
(Empty) | |
| 1 #ifndef ADBLOCK_PLUS_FILTER_H |
| 2 #define ADBLOCK_PLUS_FILTER_H |
| 3 |
| 4 #include <vector> |
| 5 |
| 6 #include "String.h" |
| 7 #include "intrusive_ptr.h" |
| 8 #include "debug.h" |
| 9 |
| 10 class Filter : public ref_counted |
| 11 { |
| 12 protected: |
| 13 String mText; |
| 14 |
| 15 public: |
| 16 explicit Filter(const String& text); |
| 17 virtual ~Filter(); |
| 18 |
| 19 /* TODO |
| 20 std::vector<Subscription> subscriptions; |
| 21 */ |
| 22 |
| 23 const String GetText() const |
| 24 { |
| 25 return mText; |
| 26 } |
| 27 |
| 28 enum Type |
| 29 { |
| 30 UNKNOWN = 0, |
| 31 INVALID = 1, |
| 32 COMMENT = 2, |
| 33 BLOCKING = 3, |
| 34 WHITELIST = 4, |
| 35 ELEMHIDE = 5, |
| 36 ELEMHIDEEXCEPTION = 6, |
| 37 CSSPROPERTY = 7, |
| 38 }; |
| 39 |
| 40 virtual Type GetType() const = 0; |
| 41 |
| 42 virtual String Serialize() const; |
| 43 |
| 44 static Filter* FromText(const String& text); |
| 45 static String Normalize(String& text); |
| 46 }; |
| 47 |
| 48 typedef intrusive_ptr<Filter> FilterPtr; |
| 49 |
| 50 #endif |
OLD | NEW |