mirror of
https://github.com/TomHarte/CLK.git
synced 2025-11-24 13:17:41 +00:00
23 lines
498 B
C++
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};
|
|
}
|
|
|