indexing description : "Root class for this application." author : "Generated by the New Vision2 Application Wizard." date : "$Date$" revision : "1.0.0" class APPLICATION inherit EV_APPLICATION ARGUMENTS undefine default_create, copy end create make_and_launch feature {NONE} -- Initialization make_and_launch is -- Initialize and launch application do default_create prepare launch end prepare is -- Prepare the first window to be displayed. -- Perform one call to first window in order to -- avoid to violate the invariant of class EV_APPLICATION. do -- create and initialize the first window. create first_window -- Show the first window. --| TODO: Remove this line if you don't want the first --| window to be shown at the start of the program. first_window.show if argument_count > 0 and then {s: STRING} argument (1) then first_window.add_melted_filename (s) end end feature {NONE} -- Implementation first_window: MAIN_WINDOW -- Main window. end -- class APPLICATION