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
+5 -3
View File
@@ -1,6 +1,8 @@
#pragma once
#include <filesystem>
#include <memory>
#include "io/fwd.hpp"
namespace audio {
struct PCM;
@@ -9,9 +11,9 @@ namespace audio {
namespace ogg {
std::unique_ptr<audio::PCM> load_pcm(
const std::filesystem::path& file, bool headerOnly
const io::path& file, bool headerOnly
);
std::unique_ptr<audio::PCMStream> create_stream(
const std::filesystem::path& file
const io::path& file
);
}