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 | |
Stephan Pleines | d99b1ee | 2024-02-02 20:56:44 -0800 | [diff] [blame] | 7 | namespace aos::logger { |
Eric Schmiedeberg | e279b53 | 2023-04-19 16:36:02 -0600 | [diff] [blame] | 8 | // Vector of pair of name and type of the channel |
| 9 | using ReplayChannels = std::vector<std::pair<std::string, std::string>>; |
| 10 | // Vector of channel indices |
| 11 | using ReplayChannelIndices = std::vector<size_t>; |
Stephan Pleines | d99b1ee | 2024-02-02 20:56:44 -0800 | [diff] [blame] | 12 | } // namespace aos::logger |
Eric Schmiedeberg | e279b53 | 2023-04-19 16:36:02 -0600 | [diff] [blame] | 13 | #endif // AOS_EVENTS_LOGGING_REPLAY_CHANNELS_H_ |