note
	description: "The objects available from the operating system"
	library: "Free implementation of ELKS library"
	status: "See notice at end of class."
	legal: "See notice at end of class."
	date: "$Date: 2019-02-15 21:36:35 +0000 (Fri, 15 Feb 2019) $"
	revision: "$Revision: 102846 $"

class interface
	OPERATING_ENVIRONMENT

create 
	default_create

feature -- Access

	Directory_separator: CHARACTER_8
			-- Character used to separate subdirectories in a path name on this platform.
		ensure
			is_class: class

	Current_directory_name_representation: STRING_8
			-- Representation of the current directory
		ensure
			is_class: class
	
feature -- Status report		

	home_directory_supported: BOOLEAN
			-- Is the notion of home directory supported on this platform?
		ensure
			is_class: class

	root_directory_supported: BOOLEAN
			-- Is the notion of root directory supported on this platform?
		ensure
			is_class: class

	case_sensitive_path_names: BOOLEAN
			-- Are path names case sensitive?
		ensure
			is_class: class
	
note
	copyright: "Copyright (c) 1984-2019, 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 OPERATING_ENVIRONMENT

Generated by ISE EiffelStudio