Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 #ifndef ADBLOCK_PLUS_APP_INFO_H | |
2 #define ADBLOCK_PLUS_APP_INFO_H | |
3 | |
4 #include <string> | |
5 | |
6 namespace AdblockPlus | |
7 { | |
8 struct AppInfo | |
9 { | |
10 std::string id; | |
11 std::string version; | |
12 std::string name; | |
13 std::string platform; | |
14 }; | |
15 } | |
16 | |
17 #endif | |
OLD | NEW |