// // StaticAnalyser.cpp // Clock Signal // // Created by Thomas Harte on 23/08/2016. // Copyright © 2016 Thomas Harte. All rights reserved. // #include "StaticAnalyser.hpp" using namespace StaticAnalyser; std::list GetTargets(std::shared_ptr disk, std::shared_ptr tape, std::shared_ptr> rom) { std::list targets; if(disk) { } if(tape) { } if(rom) { } return targets; }