mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
26 lines
456 B
C++
26 lines
456 B
C++
|
//
|
||
|
// Disk.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 13/09/2016.
|
||
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef StaticAnalyser_Commodore_Disk_hpp
|
||
|
#define StaticAnalyser_Commodore_Disk_hpp
|
||
|
|
||
|
#include "../../Storage/Disk/Disk.hpp"
|
||
|
#include "File.hpp"
|
||
|
#include <list>
|
||
|
|
||
|
namespace StaticAnalyser {
|
||
|
namespace Commodore {
|
||
|
|
||
|
std::list<File> GetFiles(const std::shared_ptr<Storage::Disk::Disk> &disk);
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif /* Disk_hpp */
|