| LEFT | RIGHT |
| 1 #ifndef ADBLOCKPLUS_COMMENTFILTER_H | 1 #pragma once |
| 2 #define ADBLOCKPLUS_COMMENTFILTER_H | |
| 3 | |
| 4 #include <string> | |
| 5 | 2 |
| 6 #include "Filter.h" | 3 #include "Filter.h" |
| 7 | 4 |
| 8 class CommentFilter : public Filter | 5 class CommentFilter : public Filter |
| 9 { | 6 { |
| 10 public: | 7 public: |
| 11 CommentFilter(const std::u16string& text); | 8 explicit CommentFilter(const String& text); |
| 12 static Type Parse(const std::u16string& text); | 9 static Type Parse(const String& text); |
| 13 static CommentFilter* Create(const std::u16string& text); | 10 static CommentFilter* Create(const String& text); |
| 14 Type GetType(); | |
| 15 }; | 11 }; |
| 16 | |
| 17 #endif | |
| LEFT | RIGHT |