blob: 712b79056f1259e788392be69626f663fcd689f7 [file] [log] [blame]
bigbiffdf8436b2020-08-30 16:22:34 -04001#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
bigbiff673c7ae2020-12-02 19:44:56 -05008#include "recovery_utils/roots.h"
bigbiffdf8436b2020-08-30 16:22:34 -04009
10#include "bootloader_message/include/bootloader_message/bootloader_message.h"
11
12extern std::string stage;
13
14class args {
15 public:
16 static std::vector<std::string> get_args(const int *argc, char*** const argv);
17};