src/simulator/scheduler.h
changeset 3997 a66553c56a8f
parent 3807 268b86ce5435
child 4094 7d5024b3f882
equal deleted inserted replaced
3996:2277ff80158c 3997:a66553c56a8f
    85    * This method cannot be invoked if the list is empty.
    85    * This method cannot be invoked if the list is empty.
    86    * Remove the next earliest event from the event list.
    86    * Remove the next earliest event from the event list.
    87    */
    87    */
    88   virtual Event RemoveNext (void) = 0;
    88   virtual Event RemoveNext (void) = 0;
    89   /**
    89   /**
    90    * \param id the id of the event to remove
    90    * \param ev the event to remove
    91    *
    91    *
    92    * This methods cannot be invoked if the list is empty.
    92    * This methods cannot be invoked if the list is empty.
    93    */
    93    */
    94   virtual void Remove (const Event &ev) = 0;
    94   virtual void Remove (const Event &ev) = 0;
    95 };
    95 };