class UNDERBIT_ID3_UNIQUE_FILE_ID_FRAME

(source code)

Description

Underbit id3 unique file id

note
	description: "Underbit id3 unique file id"

	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: "7"

class
	UNDERBIT_ID3_UNIQUE_FILE_ID_FRAME

inherit
	ID3_UNIQUE_FILE_ID_FRAME
		export
			{NONE} all
			{ANY} Default_pointer
		end

	UNDERBIT_ID3_FRAME
		rename
			make as make_frame,
			code as field_id
		export
			{NONE} all
			{ANY} is_attached
		redefine
			make_frame
		end

create
	make_frame, make

feature -- Initialization

	make_frame (obj_ptr: POINTER; a_code: STRING)
			--
		do
			Precursor {UNDERBIT_ID3_FRAME} (obj_ptr, a_code)
		ensure then
			frame_is_unique_file_id: is_unique_file_id
		end

end