1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00
CLK/Analyser/Static/Commodore/Disk.hpp
2024-01-16 23:34:46 -05:00

21 lines
355 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> &disk);
}