Index: include/AdblockPlus/AppInfo.h |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/include/AdblockPlus/AppInfo.h |
@@ -0,0 +1,17 @@ |
+#ifndef ADBLOCK_PLUS_APP_INFO_H |
+#define ADBLOCK_PLUS_APP_INFO_H |
+ |
+#include <string> |
+ |
+namespace AdblockPlus |
+{ |
+ struct AppInfo |
+ { |
+ std::string id; |
+ std::string version; |
+ std::string name; |
+ std::string platform; |
+ }; |
+} |
+ |
+#endif |