Package Name: window.document.hello
-- =============================================================================
-- File : window-document-hello.ads =
-- Project : Hello =
-- Version : 1.1.0 =
-- =
-- History : =
-- ----------------------------------------------------------------------------=
-- =============================================================================
-- =============================================================================
package Window.Document.Hello is
-- =============================================================================
type Hello_Window is new Document_Window with private ;
-- Controlling operations
procedure Initialize (This : in out Hello_Window) ;
procedure Handle_Command
(This : in out Hello_Window ;
Command : in COM.Command'class ;
Command_Was_Handled : out boolean) ;
-- Auxillary operations
procedure Draw (This : in out Hello_Window) ;
private
type Hello_Window is new Document_Window with null record ;
end Window.Document.Hello ;