class MONITORED_WEBSITE_IMP

(source code)

description

Windows implementation of MONITORED_WEBSITE_I

note
	description: "Windows implementation of ${MONITORED_WEBSITE_I}"

	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: "2024-01-20 19:18:27 GMT (Saturday 20th January 2024)"
	revision: "2"

class
	MONITORED_WEBSITE_IMP

inherit
	MONITORED_WEBSITE_I

create
	make

feature {NONE} -- Build from XML

	set_terminal_command
		-- only Unix has class `EL_XDG_DESKTOP'
		local
			desktop_ssh_path: FILE_PATH
--			desktop: EL_XDG_DESKTOP
		do
			desktop_ssh_path := node.to_expanded_file_path
			if desktop_ssh_path.exists then
--				create desktop.make (desktop_ssh_path)
--				terminal_command := desktop.exec
			end
		end

end