2016-08-29 21:10:38 -04:00
|
|
|
//
|
|
|
|
// Tape.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 29/08/2016.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-08-29 21:10:38 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef StaticAnalyser_Acorn_Tape_hpp
|
|
|
|
#define StaticAnalyser_Acorn_Tape_hpp
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
2016-09-18 21:18:11 -04:00
|
|
|
#include "File.hpp"
|
2018-01-24 21:48:44 -05:00
|
|
|
#include "../../../Storage/Tape/Tape.hpp"
|
2016-08-29 21:10:38 -04:00
|
|
|
|
2018-01-24 21:48:44 -05:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
2016-08-29 21:10:38 -04:00
|
|
|
namespace Acorn {
|
|
|
|
|
2018-01-23 22:18:16 -05:00
|
|
|
std::vector<File> GetFiles(const std::shared_ptr<Storage::Tape::Tape> &tape);
|
2016-08-29 21:10:38 -04:00
|
|
|
|
2018-01-24 21:48:44 -05:00
|
|
|
}
|
2016-08-29 21:10:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Tape_hpp */
|