mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-08 10:07:25 +00:00
25 lines
537 B
C++
25 lines
537 B
C++
//
|
|
// AudioProducer.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 31/03/2020.
|
|
// Copyright © 2020 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "../Outputs/Speaker/Speaker.hpp"
|
|
|
|
namespace MachineTypes {
|
|
|
|
/*!
|
|
An AudioProducer is any machine that **might** produce audio. This isn't always knowable statically.
|
|
*/
|
|
class AudioProducer {
|
|
public:
|
|
/// @returns The speaker that receives this machine's output, or @c nullptr if this machine is mute.
|
|
virtual Outputs::Speaker::Speaker *get_speaker() = 0;
|
|
};
|
|
|
|
}
|