2016-08-27 13:42:51 -04:00
|
|
|
//
|
|
|
|
// Tape.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 24/08/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef StaticAnalyser_Commodore_Tape_hpp
|
|
|
|
#define StaticAnalyser_Commodore_Tape_hpp
|
|
|
|
|
2016-09-13 07:26:51 -04:00
|
|
|
#include "../../Storage/Tape/Tape.hpp"
|
2016-09-11 17:09:00 -04:00
|
|
|
#include "File.hpp"
|
2016-09-13 07:26:51 -04:00
|
|
|
#include <list>
|
2016-08-27 13:42:51 -04:00
|
|
|
|
|
|
|
namespace StaticAnalyser {
|
|
|
|
namespace Commodore {
|
|
|
|
|
2016-09-06 06:39:40 -04:00
|
|
|
std::list<File> GetFiles(const std::shared_ptr<Storage::Tape::Tape> &tape);
|
|
|
|
|
2016-08-27 13:42:51 -04:00
|
|
|
}
|
|
|
|
}
|
2016-09-13 07:26:51 -04:00
|
|
|
|
2016-08-27 13:42:51 -04:00
|
|
|
#endif /* Tape_hpp */
|