| LEFT | RIGHT |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
| 17 | 17 |
| 18 #include "CommentFilter.h" | 18 #include "CommentFilter.h" |
| 19 | 19 |
| 20 ABP_NS_USING | 20 ABP_NS_USING |
| 21 | 21 |
| 22 CommentFilter::CommentFilter(const String& text) | 22 CommentFilter::CommentFilter(const String& text) |
| 23 : Filter(Type::COMMENT, text) | 23 : Filter(classType, text) |
| 24 { | 24 { |
| 25 } | 25 } |
| 26 | 26 |
| 27 Filter::Type CommentFilter::Parse(const String& text) | 27 Filter::Type CommentFilter::Parse(const String& text) |
| 28 { | 28 { |
| 29 if (text.length() && text[0] == u'!') | 29 if (text.length() && text[0] == u'!') |
| 30 return Type::COMMENT; | 30 return Type::COMMENT; |
| 31 else | 31 else |
| 32 return Type::UNKNOWN; | 32 return Type::UNKNOWN; |
| 33 } | 33 } |
| 34 | 34 |
| 35 CommentFilter* CommentFilter::Create(const String& text) | 35 CommentFilter* CommentFilter::Create(const String& text) |
| 36 { | 36 { |
| 37 Type type = Parse(text); | 37 Type type = Parse(text); |
| 38 if (type == Type::COMMENT) | 38 if (type == Type::COMMENT) |
| 39 return new CommentFilter(text); | 39 return new CommentFilter(text); |
| 40 else | 40 else |
| 41 return nullptr; | 41 return nullptr; |
| 42 } | 42 } |
| LEFT | RIGHT |