blob: 0922accb00447ae0ac68794a945cb94c388a30ec [file] [log] [blame]
Eric Schmiedeberge279b532023-04-19 16:36:02 -06001#ifndef AOS_EVENTS_LOGGING_REPLAY_CHANNELS_H_
2#define AOS_EVENTS_LOGGING_REPLAY_CHANNELS_H_
3
4#include <string>
5#include <vector>
6
Stephan Pleinesd99b1ee2024-02-02 20:56:44 -08007namespace aos::logger {
Eric Schmiedeberge279b532023-04-19 16:36:02 -06008// Vector of pair of name and type of the channel
9using ReplayChannels = std::vector<std::pair<std::string, std::string>>;
10// Vector of channel indices
11using ReplayChannelIndices = std::vector<size_t>;
Stephan Pleinesd99b1ee2024-02-02 20:56:44 -080012} // namespace aos::logger
Eric Schmiedeberge279b532023-04-19 16:36:02 -060013#endif // AOS_EVENTS_LOGGING_REPLAY_CHANNELS_H_