anim3D/src/GroupGOPrivate.i3


Copyright (C) 1994, Digital Equipment Corp.
Digital Internal Use Only
                                                                           
       Created on Wed Feb 16 16:13:24 PST 1994 by najork                   

INTERFACE GroupGOPrivate;

IMPORT GO;

FROM GroupGO IMPORT T, Public;

REVEAL
  T <: Private;

TYPE
  Private = Public BRANDED OBJECT
    children : REF ARRAY OF GO.T;
    last     : INTEGER;   (* children[0 .. last] contains good data *)
  END;

END GroupGOPrivate.