// report.cc: the Report class.

#include "main.h"
#include "event.h"
#include "evlist.h"
#include "stats.h"
#include "report.h"

void Report::makeItHappen () {
   sim->stats->snapshot ();
   
   // Schedule the next interim report.
   setTime (sim->simulationTime + sim->reportInterval);
   sim->eventList->insert (this);
}

