OLD | NEW |
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-2017 eyeo GmbH | 3 * Copyright (C) 2006-2017 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 |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 class UserDefinedSubscription : public Subscription | 24 class UserDefinedSubscription : public Subscription |
25 { | 25 { |
26 private: | 26 private: |
27 int mDefaults; | 27 int mDefaults; |
28 | 28 |
29 public: | 29 public: |
30 explicit UserDefinedSubscription(const String& id); | 30 explicit UserDefinedSubscription(const String& id); |
31 BINDINGS_EXPORTED bool IsDefaultFor(const Filter* filter) const; | 31 BINDINGS_EXPORTED bool IsDefaultFor(const Filter* filter) const; |
32 BINDINGS_EXPORTED void MakeDefaultFor(const Filter* filter); | 32 BINDINGS_EXPORTED void MakeDefaultFor(const Filter* filter); |
| 33 BINDINGS_EXPORTED bool IsGeneric() const |
| 34 { |
| 35 return mDefaults == 0; |
| 36 } |
33 BINDINGS_EXPORTED void InsertFilterAt(Filter* filter, unsigned pos); | 37 BINDINGS_EXPORTED void InsertFilterAt(Filter* filter, unsigned pos); |
34 BINDINGS_EXPORTED bool RemoveFilterAt(unsigned pos); | 38 BINDINGS_EXPORTED bool RemoveFilterAt(unsigned pos); |
35 BINDINGS_EXPORTED OwnedString Serialize() const; | 39 BINDINGS_EXPORTED OwnedString Serialize() const; |
36 }; | 40 }; |
| 41 |
| 42 template<> |
| 43 inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>() |
| 44 { |
| 45 if (mType != Type::USERDEFINED) |
| 46 return nullptr; |
| 47 |
| 48 return static_cast<UserDefinedSubscription*>(this); |
| 49 } |
OLD | NEW |