Package Name: application.hello
-- =============================================================================
-- File : application-hello.ads =
-- Project : Hello =
-- Version : 1.0.0 =
-- =============================================================================
-- =============================================================================
package Application.Hello is
-- =============================================================================
type Hello_Application is new Application with private ;
procedure Handle_Command
(This : in out Hello_Application ;
Command : in COM.Command'class ;
Command_Was_Handled : out boolean) ;
private
type Hello_Application is new Application with null record ;
end Application.Hello ;