class TL_DEFAULT_COMMENTS

(source code)

Description

Tl default comments

note
	description: "Tl default comments"

	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:06 GMT (Tuesday 15th November 2022)"
	revision: "2"

class
	TL_DEFAULT_COMMENTS

inherit
	TL_COMMENTS

feature -- Access

	Description: ZSTRING
		once
			create Result.make_empty
		end

	Language: STRING = ""

	Text: ZSTRING
		once
			create Result.make_empty
		end

feature -- Status query

	is_default: BOOLEAN = True
end