bigbiff | df8436b | 2020-08-30 16:22:34 -0400 | [diff] [blame] | 1 | #include <string> |
| 2 | #include <vector> |
| 3 | |
| 4 | #include <android-base/file.h> |
| 5 | #include <android-base/logging.h> |
| 6 | #include <android-base/strings.h> |
| 7 | |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 8 | #include "recovery_utils/roots.h" |
bigbiff | df8436b | 2020-08-30 16:22:34 -0400 | [diff] [blame] | 9 | |
| 10 | #include "bootloader_message/include/bootloader_message/bootloader_message.h" |
| 11 | |
| 12 | extern std::string stage; |
| 13 | |
| 14 | class args { |
| 15 | public: |
| 16 | static std::vector<std::string> get_args(const int *argc, char*** const argv); |
| 17 | }; |