yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
project_workflow_status.h
Go to the documentation of this file.
1#ifndef YAZE_APP_EDITOR_SYSTEM_PROJECT_WORKFLOW_STATUS_H_
2#define YAZE_APP_EDITOR_SYSTEM_PROJECT_WORKFLOW_STATUS_H_
3
4#include <chrono>
5#include <string>
6#include <vector>
7
8namespace yaze::editor {
9
11 kIdle,
15};
16
18 bool visible = false;
19 bool can_cancel = false;
20 std::string label;
21 std::string summary;
22 std::string detail;
23 std::string output_tail;
25};
26
28 std::string kind;
30 std::string output_log;
31 std::chrono::system_clock::time_point timestamp;
32};
33
34} // namespace yaze::editor
35
36#endif // YAZE_APP_EDITOR_SYSTEM_PROJECT_WORKFLOW_STATUS_H_
Editors are the view controllers for the application.
std::chrono::system_clock::time_point timestamp