aboutsummaryrefslogtreecommitdiff
path: root/src/fltk-devices-surface-display.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-devices-surface-display.ads')
-rw-r--r--src/fltk-devices-surface-display.ads53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/fltk-devices-surface-display.ads b/src/fltk-devices-surface-display.ads
deleted file mode 100644
index b581be7..0000000
--- a/src/fltk-devices-surface-display.ads
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
--- Programmed by Jedidiah Barber
--- Released into the public domain
-
-
-with
-
- FLTK.Devices.Graphics;
-
-
-package FLTK.Devices.Surface.Display is
-
-
- type Display_Device is new Surface_Device with private;
-
- type Display_Device_Reference (Data : not null access Display_Device'Class) is
- limited null record with Implicit_Dereference => Data;
-
-
-
-
- package Forge is
-
- -- Docs say you shouldn't ever need to use this, but it's here anyway.
- function Create
- (Graphics : in out FLTK.Devices.Graphics.Graphics_Driver)
- return Display_Device;
-
- end Forge;
-
-
-
-
- function Get_Platform_Display
- return Display_Device_Reference;
-
-
-private
-
-
- type Display_Device is new Surface_Device with null record;
-
- overriding procedure Finalize
- (This : in out Display_Device);
-
-
- pragma Inline (Get_Platform_Display);
-
-
-end FLTK.Devices.Surface.Display;
-
-