From 0f28695be695a0b2e8fbfff388c61cb69cdc03af Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 26 May 2016 00:38:43 +1000 Subject: The Great Package Naming Style Change(tm) --- fltk-widget-group.ads | 57 --------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 fltk-widget-group.ads (limited to 'fltk-widget-group.ads') diff --git a/fltk-widget-group.ads b/fltk-widget-group.ads deleted file mode 100644 index d71f76c..0000000 --- a/fltk-widget-group.ads +++ /dev/null @@ -1,57 +0,0 @@ - - -package FLTK.Widget.Group is - - - type Group_Type is new Widget_Type with private; - type Index is new Integer; - - - function Create - (X, Y, W, H : Integer; - Label : String) - return Group_Type; - - - procedure Add - (This : Group_Type'Class; - Item : Widget_Type'Class); - - - procedure Clear - (This : Group_Type'Class); - - - function Find - (This : Group_Type'Class; - Item : Widget_Type'Class) - return Index; - - - procedure Insert - (This : Group_Type'Class; - Item : Widget_Type'Class; - Place : Index); - - - procedure Remove - (This : Group_Type'Class; - Item : Widget_Type'Class); - - - procedure Remove - (This : Group_Type'Class; - Place : Index); - - -private - - - type Group_Type is new Widget_Type with null record; - - - overriding procedure Finalize (This : in out Group_Type); - - -end FLTK.Widget.Group; - -- cgit