migrate from std::filesystem::path to io::path (WIP)

This commit is contained in:
MihailRis
2025-01-30 22:23:13 +03:00
parent 1e22882284
commit e0314803c0
72 changed files with 1189 additions and 791 deletions
+3 -2
View File
@@ -1,10 +1,11 @@
#pragma once
#include <filesystem>
#include <string>
#include <unordered_map>
#include <vector>
#include "io/io.hpp"
class ResPaths;
class GLSLExtension {
@@ -29,7 +30,7 @@ public:
bool hasDefine(const std::string& name) const;
std::string process(
const std::filesystem::path& file,
const io::path& file,
const std::string& source,
bool header = false
);