blob: f9ec144388f95a74eccd743ee9de244ea8c955f7 [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
7namespace aos {
8namespace logger {
9// Vector of pair of name and type of the channel
10using ReplayChannels = std::vector<std::pair<std::string, std::string>>;
11// Vector of channel indices
12using ReplayChannelIndices = std::vector<size_t>;
13} // namespace logger
14} // namespace aos
15#endif // AOS_EVENTS_LOGGING_REPLAY_CHANNELS_H_