Eric Schmiedeberg | e279b53 | 2023-04-19 16:36:02 -0600 | [diff] [blame] | 1 | #ifndef AOS_EVENTS_LOGGING_REPLAY_CHANNELS_H_ |
| 2 | #define AOS_EVENTS_LOGGING_REPLAY_CHANNELS_H_ |
| 3 | |
| 4 | #include <string> |
| 5 | #include <vector> |
| 6 | |
| 7 | namespace aos { |
| 8 | namespace logger { |
| 9 | // Vector of pair of name and type of the channel |
| 10 | using ReplayChannels = std::vector<std::pair<std::string, std::string>>; |
| 11 | // Vector of channel indices |
| 12 | using ReplayChannelIndices = std::vector<size_t>; |
| 13 | } // namespace logger |
| 14 | } // namespace aos |
| 15 | #endif // AOS_EVENTS_LOGGING_REPLAY_CHANNELS_H_ |