2016-10-12 02:20:13 +00:00
|
|
|
//
|
|
|
|
// StaticAnalyser.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 11/10/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-10-12 02:20:13 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef StaticAnalyser_Oric_StaticAnalyser_hpp
|
|
|
|
#define StaticAnalyser_Oric_StaticAnalyser_hpp
|
|
|
|
|
|
|
|
#include "../StaticAnalyser.hpp"
|
2018-04-14 16:12:12 +00:00
|
|
|
#include "../../../Storage/TargetPlatforms.hpp"
|
|
|
|
#include <string>
|
2016-10-12 02:20:13 +00:00
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
2016-10-12 02:20:13 +00:00
|
|
|
namespace Oric {
|
|
|
|
|
2018-04-14 16:12:12 +00:00
|
|
|
TargetList GetTargets(const Media &media, const std::string &file_name, TargetPlatform::IntType potential_platforms);
|
2016-10-12 02:20:13 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2018-01-25 02:48:44 +00:00
|
|
|
}
|
2016-10-12 02:20:13 +00:00
|
|
|
|
|
|
|
#endif /* StaticAnalyser_hpp */
|