Annotation of Amaya/amaya/Template.S, revision 1.2

1.1       tollenae    1:             { A. Tollenaere    July 2005 }
                      2: 
                      3:        { Templates schema. Only implements }
                      4:        { protected areas yet }
                      5:        
                      6: STRUCTURE Template;
                      7: 
                      8: DEFPRES TemplateP;
                      9: 
                     10: ATTR
                     11:    { No global attributes for protected areas }
                     12: 
                     13:    { generic attributes for internal use }
                     14:    Unknown_attribute = TEXT;   { to store an unknown attribute }
                     15:    Ghost_restruct = TEXT;      { to help structure transformation }
                     16: 
                     17: CONST
                     18: 
                     19:   C_Empty = ' ';
                     20: 
                     21: STRUCT
                     22: 
                     23:   Template { No attribute for the root } =
                     24:        CASE OF
                     25:                free_struct = ANY ;
                     26:                free_content = ANY ;
                     27:        END; 
                     28:        
                     29: EXCEPT
                     30: 
                     31:     Unknown_attribute: Invisible;
                     32: 
                     33: END

Webmaster