1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-24 13:17:41 +00:00
Files
CLK/Storage/FileBundle/FileBundle.cpp
2025-11-20 17:12:31 -05:00

23 lines
498 B
C++

//
// FileBundle.cpp
// Clock Signal
//
// Created by Thomas Harte on 19/11/2025.
// Copyright © 2025 Thomas Harte. All rights reserved.
//
#include "FileBundle.hpp"
using namespace Storage::FileBundle;
std::optional<Storage::FileHolder> LocalFSFileBundle::key_file() {
return {to_contain_};
}
Storage::FileHolder LocalFSFileBundle::open(const std::string &name, Storage::FileMode mode) {
// TODO: append path. Just cheat for now.
(void)name;
return {/* name */ to_contain_, mode};
}