commit | 37673f0bf532bd244c7e37b9df3877de9e20343d | [log] [tgz] |
---|---|---|
author | Daniel Zheng <zhengdaniel@google.com> | Wed Apr 19 00:16:13 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Apr 19 00:16:13 2023 +0000 |
tree | 96516d056097e39548b55c7787cdefa2b5a45fe8 | |
parent | 02a6d74b650bcd23645a5533d49ce84d352196a2 [diff] | |
parent | 0897526557e66dbb74523d67c314c4f72affb7f8 [diff] |
Merge "Fixing circular dependency"
diff --git a/fastboot/task.h b/fastboot/task.h index e80f88d..801a0f6 100644 --- a/fastboot/task.h +++ b/fastboot/task.h
@@ -18,11 +18,14 @@ #include <sstream> #include <string> -#include "fastboot.h" #include "fastboot_driver.h" #include "super_flash_helper.h" #include "util.h" +struct FlashingPlan; +struct Image; +using ImageEntry = std::pair<const Image*, std::string>; + class Task { public: Task() = default;