2016-09-06 10:39:40 +00:00
|
|
|
//
|
|
|
|
// CommodoreAnalyser.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 06/09/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-09-06 10:39:40 +00:00
|
|
|
//
|
|
|
|
|
2016-09-15 23:24:59 +00:00
|
|
|
#ifndef StaticAnalyser_Commodore_StaticAnalyser_hpp
|
|
|
|
#define StaticAnalyser_Commodore_StaticAnalyser_hpp
|
2016-09-06 10:39:40 +00:00
|
|
|
|
|
|
|
#include "../StaticAnalyser.hpp"
|
2018-04-14 16:12:12 +00:00
|
|
|
#include "../../../Storage/TargetPlatforms.hpp"
|
2018-04-06 21:42:24 +00:00
|
|
|
#include <string>
|
2016-09-06 10:39:40 +00:00
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
2016-09-06 10:39:40 +00:00
|
|
|
namespace Commodore {
|
|
|
|
|
2018-04-14 16:12:12 +00:00
|
|
|
TargetList GetTargets(const Media &media, const std::string &file_name, TargetPlatform::IntType potential_platforms);
|
2016-09-06 10:39:40 +00:00
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
}
|
2016-09-06 10:39:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CommodoreAnalyser_hpp */
|