General cleanup

This commit is contained in:
scawful
2024-11-02 00:10:24 -05:00
parent f4f358f85d
commit 665d58aa97
7 changed files with 6 additions and 29 deletions

View File

@@ -5,11 +5,9 @@
#include <sstream>
#include <string>
#include <unordered_map>
#include <vector>
#include "absl/strings/str_format.h"
#include "app/core/constants.h"
#include "app/gui/icons.h"
#include "imgui/imgui.h"
#include "imgui/misc/cpp/imgui_stdlib.h"

View File

@@ -2,16 +2,10 @@
#define YAZE_APP_CORE_LABELING_H_
#include <cstdint>
#include <fstream>
#include <sstream>
#include <string>
#include <unordered_map>
#include <vector>
#include "absl/status/status.h"
#include "absl/status/statusor.h"
#include "app/core/constants.h"
#include "absl/strings/string_view.h"
namespace yaze {
namespace app {
@@ -57,4 +51,4 @@ struct ResourceLabelManager {
} // namespace app
} // namespace yaze
#endif // YAZE_APP_CORE_LABELING_H_
#endif // YAZE_APP_CORE_LABELING_H_

View File

@@ -1,14 +1,10 @@
#ifndef YAZE_APP_CORE_PROJECT_H
#define YAZE_APP_CORE_PROJECT_H
#include <filesystem>
#include <fstream>
#include <string>
#include <string_view>
#include <vector>
#include "absl/status/status.h"
#include "absl/strings/match.h"
#include "app/core/common.h"
#include "app/core/constants.h"
@@ -26,7 +22,6 @@ constexpr char kEndOfProjectFile[] = "EndOfProjectFile";
* user can have different rom file names for a single project and keep track of
* backups.
*/
struct Project : public core::ExperimentFlags {
/**
* @brief Creates a new project.
@@ -109,7 +104,6 @@ struct Project : public core::ExperimentFlags {
std::string rom_filename_ = "";
std::string code_folder_ = "";
std::string labels_filename_ = "";
std::vector<std::string> previous_rom_filenames_;
};
} // namespace app