// // ****************************************************************** // // /\ /| @File DecodeEvent.h // // \ V/ @Brief // // | "") @Author lijinwen, ghz005@uni-trend.com.cn // // / | @Creation 2024-05-16 // // / \\ @Modified 2024-05-16 // // *(__\_\ // // ****************************************************************** #pragma once #include #include namespace Protocol { struct DecodeBaseEvent { int64_t EventIndex = -1; //事件序号 int64_t StartIndex = 0; //事件时域起始帧序号 int64_t EndIndex = 0; //事件时域结束帧序号 char* Name; //string 事件名称 }; }