poet/src/model/TransportSim.h
2021-01-25 17:40:32 +01:00

23 lines
313 B
C++

#ifndef TRANSPORT_SIM_H
#define TRANSPORT_SIM_H
#include <RRuntime.h>
namespace poet {
class TransportSim {
public:
TransportSim(RRuntime &R);
void run();
void end();
double getTransportTime();
private:
RRuntime &R;
double transport_t = 0.f;
};
} // namespace poet
#endif // TRANSPORT_SIM_H