LEFT | RIGHT |
| 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2017 eyeo GmbH |
| 4 * |
| 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 |
| 7 * published by the Free Software Foundation. |
| 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 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/>. |
| 16 */ |
| 17 |
1 #include "bindings.ipp" | 18 #include "bindings.ipp" |
2 #include "filter/Filter.h" | 19 #include "filter/Filter.h" |
3 #include "filter/InvalidFilter.h" | 20 #include "filter/InvalidFilter.h" |
4 #include "filter/CommentFilter.h" | 21 #include "filter/CommentFilter.h" |
5 #include "filter/ActiveFilter.h" | 22 #include "filter/ActiveFilter.h" |
6 #include "filter/RegExpFilter.h" | 23 #include "filter/RegExpFilter.h" |
7 #include "filter/BlockingFilter.h" | 24 #include "filter/BlockingFilter.h" |
8 #include "filter/WhitelistFilter.h" | 25 #include "filter/WhitelistFilter.h" |
9 #include "filter/ElemHideBase.h" | 26 #include "filter/ElemHideBase.h" |
10 #include "filter/ElemHideFilter.h" | 27 #include "filter/ElemHideFilter.h" |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 .property("softExpiration", &DownloadableSubscription::GetSoftExpiration,
&DownloadableSubscription::SetSoftExpiration) | 116 .property("softExpiration", &DownloadableSubscription::GetSoftExpiration,
&DownloadableSubscription::SetSoftExpiration) |
100 .property("lastDownload", &DownloadableSubscription::GetLastDownload, &Dow
nloadableSubscription::SetLastDownload) | 117 .property("lastDownload", &DownloadableSubscription::GetLastDownload, &Dow
nloadableSubscription::SetLastDownload) |
101 .property("downloadStatus", &DownloadableSubscription::GetDownloadStatus,
&DownloadableSubscription::SetDownloadStatus) | 118 .property("downloadStatus", &DownloadableSubscription::GetDownloadStatus,
&DownloadableSubscription::SetDownloadStatus) |
102 .property("lastSuccess", &DownloadableSubscription::GetLastSuccess, &Downl
oadableSubscription::SetLastSuccess) | 119 .property("lastSuccess", &DownloadableSubscription::GetLastSuccess, &Downl
oadableSubscription::SetLastSuccess) |
103 .property("errors", &DownloadableSubscription::GetErrorCount, &Downloadabl
eSubscription::SetErrorCount) | 120 .property("errors", &DownloadableSubscription::GetErrorCount, &Downloadabl
eSubscription::SetErrorCount) |
104 .property("version", &DownloadableSubscription::GetDataRevision, &Download
ableSubscription::SetDataRevision) | 121 .property("version", &DownloadableSubscription::GetDataRevision, &Download
ableSubscription::SetDataRevision) |
105 .property("requiredVersion", &DownloadableSubscription::GetRequiredVersion
, &DownloadableSubscription::SetRequiredVersion) | 122 .property("requiredVersion", &DownloadableSubscription::GetRequiredVersion
, &DownloadableSubscription::SetRequiredVersion) |
106 .property("downloadCount", &DownloadableSubscription::GetDownloadCount, &D
ownloadableSubscription::SetDownloadCount) | 123 .property("downloadCount", &DownloadableSubscription::GetDownloadCount, &D
ownloadableSubscription::SetDownloadCount) |
107 .function("serialize", &DownloadableSubscription::Serialize); | 124 .function("serialize", &DownloadableSubscription::Serialize); |
108 } | 125 } |
LEFT | RIGHT |