class EL_MUTEX_MAKEABLE_REFERENCE
Client examples: COMPILED_CLASSES
Mutex for object conforming to EL_MAKEABLE and createable with call to make
note
	description: "Mutex for object conforming to ${EL_MAKEABLE} and createable with call to `make'"
	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: "2024-01-20 19:18:26 GMT (Saturday 20th January 2024)"
	revision: "8"
class
	EL_MUTEX_MAKEABLE_REFERENCE [G -> EL_MAKEABLE create make end]
inherit
	EL_MUTEX_REFERENCE [G]
		redefine
			default_create
		end
create
	default_create
feature {NONE} -- Initialization
	default_create
			--
		do
			make (create {G}.make)
		end
end