decode_event.h 755 B

1234567891011121314151617181920212223
  1. // // ******************************************************************
  2. // // /\ /| @File decode_event.h
  3. // // \ V/ @Brief
  4. // // | "") @Author lijinwen, ghz005@uni-trend.com.cn
  5. // // / | @Creation 2024-05-16
  6. // // / \\ @Modified 2024-06-24
  7. // // *(__\_\
  8. // // ******************************************************************
  9. #pragma once
  10. #include <cstdint>
  11. #include <string>
  12. namespace Protocol
  13. {
  14. struct DecodeBaseEvent
  15. {
  16. int64_t event_index = -1; //事件序号
  17. int64_t start_index = 0; //事件时域起始帧序号
  18. int64_t end_index = 0; //事件时域结束帧序号
  19. //char* Name; //string 事件名称
  20. };
  21. }