1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-10-31 20:16:07 +00:00

Provides the proper framework for encapsulation of analyser target specifics.

... while making them a safe container for objects too. Uses the ZX80/81 as the pilot platform.
This commit is contained in:
Thomas Harte
2018-03-09 15:36:11 -05:00
parent d410aea856
commit 78eaecb29e
17 changed files with 110 additions and 77 deletions

View File

@@ -29,7 +29,7 @@ struct MultiConfigurationTarget: public ConfigurationTarget::Machine {
MultiConfigurationTarget(const std::vector<std::unique_ptr<::Machine::DynamicMachine>> &machines);
// Below is the standard ConfigurationTarget::Machine interface; see there for documentation.
void configure_as_target(const Analyser::Static::Target &target) override;
void configure_as_target(const Analyser::Static::Target *target) override;
bool insert_media(const Analyser::Static::Media &media) override;
private: