minor refactor

This commit is contained in:
MihailRis
2024-04-21 02:37:44 +03:00
parent 599665d349
commit d213902648
15 changed files with 60 additions and 66 deletions
+5
View File
@@ -1,12 +1,17 @@
#ifndef FRONTEND_MENU_MENU_HPP_
#define FRONTEND_MENU_MENU_HPP_
#include <string>
#include <memory>
class Task;
class Engine;
namespace menus {
/// @brief Create development version label at the top-right screen corner
void create_version_label(Engine* engine);
void create_menus(Engine* engine);
void show_process_panel(Engine* engine, std::shared_ptr<Task> task, std::wstring text=L"");
}
#endif // FRONTEND_MENU_MENU_HPP_