note
	description: "Universal constants of time in a day"
	legal: "See notice at end of class."
	status: "See notice at end of class."
	date: "$Date: 2009-01-01 12:38:30 +0000 (Thu, 01 Jan 2009) $"
	revision: "$Revision: 76534 $"
	access: time

class interface
	TIME_CONSTANTS

create 
	default_create

feature -- Access

	Seconds_in_minute: INTEGER_32 = 60
			-- Number of seconds in a minute

	Seconds_in_hour: INTEGER_32 = 3600
			-- Number of seconds in an hour

	Seconds_in_day: INTEGER_32 = 86400
			-- Number of seconds in an hour

	Minutes_in_hour: INTEGER_32 = 60
			-- Number of minutes in an hour

	Hours_in_day: INTEGER_32 = 24
			-- Number of hours in a day

	time_default_format_string: STRING_8
			-- Default output format for times
	
note
	copyright: "Copyright (c) 1984-2009, Eiffel Software and others"
	license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
	source: "[
		Eiffel Software
		5949 Hollister Ave., Goleta, CA 93117 USA
		Telephone 805-685-1006, Fax 805-685-6869
		Website http://www.eiffel.com
		Customer support http://support.eiffel.com
	]"

end -- class TIME_CONSTANTS

Generated by ISE EiffelStudio