Icarus
Vehicle Simulation as a Transformable Computational Graph, built on Vulcan and Janus
Loading...
Searching...
No Matches
Playback.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5namespace icarus {
6
12class Playback {
13 public:
14 virtual ~Playback() = default;
15
19 virtual void Open(const std::string &path) = 0;
20
24 virtual void Close() = 0;
25};
26
27} // namespace icarus
Simulation data playback interface.
Definition Playback.hpp:12
virtual void Close()=0
Close playback file.
virtual ~Playback()=default
virtual void Open(const std::string &path)=0
Open recording file for playback.
Definition AggregationTypes.hpp:13