diff options
Diffstat (limited to 'src/devices/sound/mixer.h')
-rw-r--r-- | src/devices/sound/mixer.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/devices/sound/mixer.h b/src/devices/sound/mixer.h new file mode 100644 index 00000000000..e25466ea351 --- /dev/null +++ b/src/devices/sound/mixer.h @@ -0,0 +1,27 @@ +// license:BSD-3-Clause +// copyright-holders:Aaron Giles +#ifndef MAME_SOUND_MIXER_H +#define MAME_SOUND_MIXER_H + +#pragma once + +//************************************************************************** +// TYPE DEFINITIONS +//************************************************************************** + +DECLARE_DEVICE_TYPE(MIXER, mixer_device) + +// ======================> mixer_device + +class mixer_device : public device_t, public device_mixer_interface +{ +public: + // internal constructor + mixer_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); + +protected: + // device-level overrides + virtual void device_start() override; +}; + +#endif // MAME_SOUND_MIXER_H |