Index: include/AdblockPlus/AppInfo.h |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/include/AdblockPlus/AppInfo.h |
@@ -0,0 +1,18 @@ |
+#ifndef ADBLOCK_PLUS_APP_INFO_H |
+#define ADBLOCK_PLUS_APP_INFO_H |
+ |
+#include <string> |
+ |
+namespace AdblockPlus |
+{ |
+ struct AppInfo |
Felix Dahlke
2013/04/12 13:32:27
I'm not happy with the property names here, sugges
Oleksandr
2013/04/12 14:14:52
Looks fine to me as it is.
On 2013/04/12 13:32:27
|
+ { |
+ std::string addonId; |
+ std::string addonVersion; |
+ std::string addonRoot; |
Wladimir Palant
2013/04/15 10:56:00
addonRoot is probably unnecessary - it is only use
|
+ std::string addonName; |
+ std::string application; |
Wladimir Palant
2013/04/15 10:56:00
application => platform?
|
+ }; |
+} |
+ |
+#endif |