mentor/derived/logoAlgClass.i3


 Copyright (C) 1995, Digital Equipment Corporation.       
 All rights reserved.                                     
 See the file COPYRIGHT for a full description.           
                                                          
 Last modified on Thu Feb  9 08:47:37 PST 1995 by kalsow  
 Last modified on Wed Feb 17 16:44:58 PST 1993 by johnh   
      modified on Tue Jun  9 00:35:07 1992 by mhb         

********************************************************************

      *  NOTE: This file is generated automatically from the event
      *        definition file logo.evt.
      ********************************************************************


INTERFACE logoAlgClass;

<*NOWARN*> IMPORT Algorithm, AlgorithmClass;

<* PRAGMA LL *>

TYPE
  EventDataRec = RECORD
    stopAtInit: BOOLEAN := TRUE;
    waitAtInit: CARDINAL := 1;
    ctOfInit: CARDINAL := 0;
    stopAtRandomStep: BOOLEAN := TRUE;
    waitAtRandomStep: CARDINAL := 1;
    ctOfRandomStep: CARDINAL := 0;
    stopAtShift: BOOLEAN := TRUE;
    waitAtShift: CARDINAL := 1;
    ctOfShift: CARDINAL := 0;
    stopAtMarquee: BOOLEAN := TRUE;
    waitAtMarquee: CARDINAL := 1;
    ctOfMarquee: CARDINAL := 0;
    stopAtMarqueeSpots: BOOLEAN := TRUE;
    waitAtMarqueeSpots: CARDINAL := 1;
    ctOfMarqueeSpots: CARDINAL := 0;
  END;

  T <: Public;
  Public = Algorithm.T OBJECT
      eventDataRec: EventDataRec;

      METHODS
      END;

REVEAL
  Algorithm.T <: AlgorithmClass.T;

END logoAlgClass.