class EL_UNIX_APPLICATION

(source code)

Client examples: WEBSITE_MONITOR_APP

Description

Unix only application

note
	description: "Unix only application"

	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: "2023-05-20 10:09:42 GMT (Saturday 20th May 2023)"
	revision: "1"

class
	EL_UNIX_APPLICATION

feature -- Status query

	is_valid_platform: BOOLEAN
		do
			Result := {PLATFORM}.is_unix
		end

end