Files
alire-index-community/src/alire-interfaces.ads
T
2018-05-20 12:02:45 +02:00

15 lines
335 B
Ada

with Alire.Utils;
package Alire.Interfaces with Preelaborate is
type Codifiable is limited interface;
function To_Code (This : Codifiable) return Utils.String_Vector is abstract;
type Imaginable is limited interface;
function Image (This : Imaginable) return String is abstract;
end Alire.Interfaces;