2016-09-08 09:32:17 +00:00
|
|
|
//
|
|
|
|
// ConfigurationTarget.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 08/09/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ConfigurationTarget_hpp
|
|
|
|
#define ConfigurationTarget_hpp
|
|
|
|
|
|
|
|
#include "../StaticAnalyser/StaticAnalyser.hpp"
|
|
|
|
|
|
|
|
namespace ConfigurationTarget {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
A ConfigurationTarget::Machine is anything that can accept a StaticAnalyser::Target
|
2017-08-17 14:48:29 +00:00
|
|
|
and configure itself appropriately, or accept a list of media subsequently to insert.
|
2016-09-08 09:32:17 +00:00
|
|
|
*/
|
|
|
|
class Machine {
|
|
|
|
public:
|
2017-08-17 14:48:29 +00:00
|
|
|
/// Instructs the machine to configure itself as described by @c target and insert the included media.
|
2017-03-26 18:34:47 +00:00
|
|
|
virtual void configure_as_target(const StaticAnalyser::Target &target) = 0;
|
2017-08-17 14:48:29 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
Requests that the machine insert @c media as a modification to current state
|
|
|
|
|
|
|
|
@returns @c true if any media was inserted; @c false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool insert_media(const StaticAnalyser::Media &media) = 0;
|
2016-09-08 09:32:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ConfigurationTarget_h */
|