2016-09-13 11:26:51 +00:00
|
|
|
//
|
|
|
|
// Disk.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 13/09/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-09-13 11:26:51 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef StaticAnalyser_Commodore_Disk_hpp
|
|
|
|
#define StaticAnalyser_Commodore_Disk_hpp
|
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
#include "../../../Storage/Disk/Disk.hpp"
|
2016-09-13 11:26:51 +00:00
|
|
|
#include "File.hpp"
|
2018-01-25 02:48:44 +00:00
|
|
|
|
2018-01-24 03:18:16 +00:00
|
|
|
#include <vector>
|
2016-09-13 11:26:51 +00:00
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
2016-09-13 11:26:51 +00:00
|
|
|
namespace Commodore {
|
|
|
|
|
2018-01-24 03:18:16 +00:00
|
|
|
std::vector<File> GetFiles(const std::shared_ptr<Storage::Disk::Disk> &disk);
|
2016-09-13 11:26:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2018-01-25 02:48:44 +00:00
|
|
|
}
|
2016-09-13 11:26:51 +00:00
|
|
|
|
|
|
|
#endif /* Disk_hpp */
|