Program listing for file kernel/src/simulationTools/TimeDiscretisationEvent.hpp

Program listing for file kernel/src/simulationTools/TimeDiscretisationEvent.hpp#

 1#ifndef TIMEDISCREVENT_H
 2#define TIMEDISCREVENT_H
 3
 4#include "Event.hpp"
 5
 6
 7class TimeDiscretisationEvent : public Event
 8{
 9
10private:
11
12  ACCEPT_SERIALIZATION(TimeDiscretisationEvent);
13
14
15
16  TimeDiscretisationEvent();
17
18public:
19
20
21  TimeDiscretisationEvent(double time, int notUsed);
22
23
24  ~TimeDiscretisationEvent();
25
26
27  void process(Simulation& simulation);
28
29
30  void update(unsigned int k);
31};
32
33#endif