soft delete file and switch to file2

This commit is contained in:
Green Sky 2024-05-26 21:44:27 +02:00
parent 96b76dc67f
commit f03c4b1210
No known key found for this signature in database
7 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,9 @@
add_library(solanaceae_message3 add_library(solanaceae_message3
./solanaceae/message3/file.hpp #./solanaceae/message3/file.hpp
./solanaceae/message3/file_r_mem.hpp #./solanaceae/message3/file_r_mem.hpp
./solanaceae/message3/file_r_file.hpp #./solanaceae/message3/file_r_file.hpp
./solanaceae/message3/file_w_file.hpp #./solanaceae/message3/file_w_file.hpp
./solanaceae/message3/file_rw_file.hpp #./solanaceae/message3/file_rw_file.hpp
./solanaceae/message3/message.hpp ./solanaceae/message3/message.hpp
./solanaceae/message3/components.hpp ./solanaceae/message3/components.hpp

View File

@ -5,7 +5,7 @@
#include "./message.hpp" #include "./message.hpp"
//fwd //fwd
struct FileI; struct File2I;
#include <entt/container/dense_map.hpp> #include <entt/container/dense_map.hpp>
@ -93,7 +93,7 @@ namespace Message::Components {
}; };
// TODO: rename to stream? // TODO: rename to stream?
using File = std::unique_ptr<FileI>; using File = std::unique_ptr<File2I>;
struct TagReceiving {}; struct TagReceiving {};
struct TagSending {}; struct TagSending {};