2023-11-29 20:59:42 +00:00
|
|
|
//
|
|
|
|
// StaticAnalyser.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 29/11/2019.
|
|
|
|
// Copyright © 2023 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2024-01-17 04:34:46 +00:00
|
|
|
#pragma once
|
2023-11-29 20:59:42 +00:00
|
|
|
|
|
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
#include "../../../Storage/TargetPlatforms.hpp"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Analyser::Static::PCCompatible {
|
|
|
|
|
2024-11-30 02:08:35 +00:00
|
|
|
TargetList GetTargets(const Media &, const std::string &file_name, TargetPlatform::IntType potential_platforms);
|
2023-11-29 20:59:42 +00:00
|
|
|
|
|
|
|
}
|