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

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

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