2016-09-06 10:39:40 +00:00
|
|
|
//
|
|
|
|
// CommodoreAnalyser.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 06/09/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
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-01-25 02:48:44 +00:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
2016-09-06 10:39:40 +00:00
|
|
|
namespace Commodore {
|
|
|
|
|
2018-01-25 03:35:54 +00:00
|
|
|
void AddTargets(const Media &media, std::vector<std::unique_ptr<Target>> &destination);
|
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 */
|