sculpt_manager: add missing includes

This commit is contained in:
Norman Feske 2022-08-23 15:29:53 +02:00 committed by Christian Helmuth
parent 4f4f270d35
commit 6f2237fc46
4 changed files with 4 additions and 1 deletions

View File

@ -18,6 +18,7 @@
#include <os/reporter.h>
/* local includes */
#include <model/wpa_passphrase.h>
#include <types.h>
#include <view/network_dialog.h>
#include <view/panel_dialog.h>

View File

@ -362,7 +362,6 @@ struct Sculpt::Main : Input_event_handler,
_deploy._handle_managed_deploy();
}
Deploy _deploy { _env, _heap, _child_states, _runtime_state, *this, *this, *this,
_launcher_listing_rom, _blueprint_rom, _download_queue };
@ -522,6 +521,7 @@ struct Sculpt::Main : Input_event_handler,
Attached_rom_dataspace const _platform { _env, "platform_info" };
/****************************************
** Cached model of the runtime config **
****************************************/

View File

@ -15,6 +15,7 @@
#define _MODEL__FILE_OPERATION_QUEUE_H_
#include <base/registry.h>
#include <util/xml_generator.h>
#include <types.h>
namespace Sculpt { struct File_operation_queue; }

View File

@ -15,6 +15,7 @@
#define _VIEW__RAM_FS_DIALOG_H_
#include <view/fs_dialog.h>
#include <view/selectable_item.h>
#include <model/ram_fs_state.h>
namespace Sculpt { struct Ram_fs_dialog; }