class FFT_MATH_CLIENT_TEST_APP

(source code)

description

Installable version of FOURIER_MATH_CLIENT_TEST_APP

note
	description: "Installable version of ${FOURIER_MATH_CLIENT_TEST_APP}"

	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:24 GMT (Saturday 20th January 2024)"
	revision: "4"

class
	FFT_MATH_CLIENT_TEST_APP

inherit
	FOURIER_MATH_CLIENT_TEST_APP

	INSTALLABLE_EROS_SUB_APPLICATION

create
	make

feature {NONE} -- Installer constants

	Desktop_launcher: EL_DESKTOP_MENU_ITEM
		once
			Result := new_launcher ("fourier-client.png")
		end

	Desktop: EL_CONSOLE_APP_MENU_DESKTOP_ENV_I
			--
		once
			Result := new_console_app_menu_desktop_environment
			Result.set_command_line_options (<< Log_option.Name_logging, "duration 20" >>)
			Result.set_terminal_position (200, 400)
		end

end