class EL_SINGLE_PATH_OPERAND_COMMAND_I
Single path operand command
note
description: "Single path operand command"
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: "2025-03-26 16:43:44 GMT (Wednesday 26th March 2025)"
revision: "17"
deferred class
EL_SINGLE_PATH_OPERAND_COMMAND_I
inherit
EL_OS_COMMAND_I
feature {NONE} -- Initialization
make (a_path: like path)
--
do
make_default
path := a_path
end
feature -- Access
path: EL_PATH
feature -- Element change
set_path (a_path: like path)
--
do
path := a_path
end
end