Left: | ||
Right: |
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-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 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 #ifndef ADBLOCK_PLUS_NOTIFICATION_H | 18 #ifndef ADBLOCK_PLUS_NOTIFICATION_H |
19 #define ADBLOCK_PLUS_NOTIFICATION_H | 19 #define ADBLOCK_PLUS_NOTIFICATION_H |
20 | 20 |
21 #include <string> | 21 #include <string> |
22 #include <vector> | 22 #include <vector> |
23 #include <memory> | |
23 | 24 |
Wladimir Palant
2015/08/05 11:19:40
You are assuming that <vector> will include <memor
sergei
2015/08/06 07:35:30
Here the same, <memory> is not included by <vector
Wladimir Palant
2015/08/06 12:24:54
Ok, that's even worse then - very non-obvious and
sergei
2015/08/07 06:29:39
Yes, sure.
| |
24 namespace AdblockPlus | 25 namespace AdblockPlus |
25 { | 26 { |
26 class FilterEngine; | 27 class FilterEngine; |
27 /** | 28 /** |
28 * Possible notification types. | 29 * Possible notification types. |
29 */ | 30 */ |
30 enum NotificationType | 31 enum NotificationType |
31 { | 32 { |
32 NOTIFICATION_TYPE_INFORMATION, | 33 NOTIFICATION_TYPE_INFORMATION, |
33 NOTIFICATION_TYPE_QUESTION, | 34 NOTIFICATION_TYPE_QUESTION, |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
79 void MarkAsShown(); | 80 void MarkAsShown(); |
80 private: | 81 private: |
81 std::string title; | 82 std::string title; |
82 std::string message; | 83 std::string message; |
83 NotificationType type; | 84 NotificationType type; |
84 }; | 85 }; |
85 typedef std::shared_ptr<Notification> NotificationPtr; | 86 typedef std::shared_ptr<Notification> NotificationPtr; |
86 } | 87 } |
87 | 88 |
88 #endif | 89 #endif |
LEFT | RIGHT |