diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 21:04:54 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 21:04:54 +1300 |
commit | b4438b2fbe895694be98e6e8426103deefc51448 (patch) | |
tree | 760d86cd7c06420a91dad102cc9546aee73146fc /src/fltk-devices-surface.ads | |
parent | a4703a65b015140cd4a7a985db66264875ade734 (diff) |
Split public API and private implementation files into different directories
Diffstat (limited to 'src/fltk-devices-surface.ads')
-rw-r--r-- | src/fltk-devices-surface.ads | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/src/fltk-devices-surface.ads b/src/fltk-devices-surface.ads deleted file mode 100644 index f70d1e8..0000000 --- a/src/fltk-devices-surface.ads +++ /dev/null @@ -1,84 +0,0 @@ - - --- Programmed by Jedidiah Barber --- Released into the public domain - - -with - - FLTK.Devices.Graphics; - - -package FLTK.Devices.Surface is - - - type Surface_Device is new Device with private; - - type Surface_Device_Reference (Data : not null access Surface_Device'Class) is - limited null record with Implicit_Dereference => Data; - - - - - package Forge is - - function Create - (Graphics : in out FLTK.Devices.Graphics.Graphics_Driver) - return Surface_Device; - - end Forge; - - - - - function Get_Current - return Surface_Device_Reference; - - procedure Set_Current - (This : in out Surface_Device); - - function Get_Original - return Surface_Device_Reference; - - - - - function Has_Driver - (This : in Surface_Device) - return Boolean; - - function Get_Driver - (This : in out Surface_Device) - return FLTK.Devices.Graphics.Graphics_Driver_Reference; - - procedure Set_Driver - (This : in out Surface_Device; - Driver : in out FLTK.Devices.Graphics.Graphics_Driver'Class); - - -private - - - type Surface_Device is new Device with record - My_Driver : access FLTK.Devices.Graphics.Graphics_Driver'Class; - end record; - - overriding procedure Finalize - (This : in out Surface_Device); - - - procedure Set_Current_Bookkeep - (Surface : in out Surface_Device'Class) - with Inline; - - - pragma Inline (Get_Current); - pragma Inline (Get_Original); - - pragma Inline (Has_Driver); - pragma Inline (Get_Driver); - - -end FLTK.Devices.Surface; - - |