class EL_WAVE_SAMPLE_FILE

(source code)

Client examples: MULTIMEDIA_AUTOTEST_APP

description

Wave sample file

note
	description: "Wave sample file"

	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"

	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2022-11-15 19:56:05 GMT (Tuesday 15th November 2022)"
	revision: "6"

class
	EL_WAVE_SAMPLE_FILE [S -> EL_AUDIO_PCM_SAMPLE create make end]

inherit
	EL_WAVE_SAMPLE_FILE_ABS

create
	make

feature {NONE} -- Factory

	new_sample: EL_AUDIO_PCM_SAMPLE
			--
		do
			Result := create {S}.make
		end

end