DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦5a82ff9da⟧ TextFile

    Length: 1199 (0x4af)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Graphiques;
with Message;
with Object;

package Class_Pen is
    function Send (This_Message : Message.Unary; To : Object.Reference)
                  return Object.Reference;
    function Send (This_Message : Message.Binary; To : Object.Reference)
                  return Object.Reference;
    function Send (This_Message : Message.Keyword; To : Object.Reference)
                  return Object.Reference;

    -- Messages unaires :
    -- Rentre_Chez_Toi
    -- Ton_X
    -- Ton_Y
    -- Ta_Fonte
    -- Duplique
    -- Detruit
    -- En_Texte

    -- Messages a mots cles :
    -- Va_En_X .. Y
    -- Ecrire
    -- Fonte

    -- Autres :

    function Create return Object.Reference;

    function Image (An_Object : Object.Reference) return Object.Tiny_String;

    procedure Printer (An_Object : Object.Reference);

    function Value (Chaine : Object.Tiny_String) return Object.Reference;

private
    type Pen is
        record
            X : Integer := 0;
            Y : Integer := 0;  
            Taille : Graphiques.Size := Graphiques.Small;
        end record;

    Table : array (Object.Index range 1 .. Object.Max_String) of Pen;

    Last : Object.Index := 0;

end Class_Pen;