class ECD_CONSTANTS

(source code)

Description

Eco-DB constants

note
	description: "Eco-DB constants"

	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-12-12 13:43:46 GMT (Monday 12th December 2022)"
	revision: "3"

deferred class
	ECD_CONSTANTS

inherit
	EL_MODULE_DIRECTORY

feature {NONE} -- Constants

	Closed_editions: INTEGER_8 = 3

	Closed_no_editions: INTEGER_8 = 4

	Closed_safe_store: INTEGER_8 = 1

	Closed_safe_store_failed: INTEGER_8 = 2

	Default_file_extension: ZSTRING
		once
			Result := "dat"
		end

	Default_data_dir: DIR_PATH
		once
			Result := Directory.App_data
		end

	Editions_file_extension: ZSTRING
		once
			Result := "editions.dat"
		end

end