2016-08-30 01:10:38 +00:00
|
|
|
//
|
|
|
|
// Tape.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 29/08/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef StaticAnalyser_Acorn_Tape_hpp
|
|
|
|
#define StaticAnalyser_Acorn_Tape_hpp
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
2016-09-19 01:18:11 +00:00
|
|
|
#include "File.hpp"
|
2016-08-30 01:10:38 +00:00
|
|
|
#include "../../Storage/Tape/Tape.hpp"
|
|
|
|
|
|
|
|
namespace StaticAnalyser {
|
|
|
|
namespace Acorn {
|
|
|
|
|
2016-08-31 23:57:09 +00:00
|
|
|
std::list<File> GetFiles(const std::shared_ptr<Storage::Tape::Tape> &tape);
|
2016-08-30 01:10:38 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Tape_hpp */
|