1 /* BEGIN INCLUDE FILE ... rate_structure.incl.pl1 */
 2 
 3 /* Created 81-06-10 by E. N. Kittlitz */
 4 
 5 /* The declaration of rate_structure requires declarations contained in
 6      installation_parms.incl.pl1.
 7 */
 8 
 9 dcl 1 rate_structure based (cur_rs_ptr) aligned,            /* describes a rate strcture */
10     2 part_1 like installation_parms_part_1 aligned,
11     2 resource (0 refer (rate_structure.nrscp)) like installation_parms_resource_array_part aligned;
12 
13 /* END INCLUDE FILE ... rate_structure.incl.pl1 */