1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-12-19 14:18:05 +00:00
Files
CLK/Analyser/Static/Commodore/Disk.hpp
2025-02-28 12:30:25 -05:00

21 lines
342 B
C++

//
// Disk.hpp
// Clock Signal
//
// Created by Thomas Harte on 13/09/2016.
// Copyright 2016 Thomas Harte. All rights reserved.
//
#pragma once
#include "Storage/Disk/Disk.hpp"
#include "File.hpp"
#include <vector>
namespace Analyser::Static::Commodore {
std::vector<File> GetFiles(const std::shared_ptr<Storage::Disk::Disk> &);
}