protocol_xxx_enums.h 589 B

123456789101112131415161718192021222324
  1. // // ******************************************************************
  2. // // /\ /| @File protocol_Usb_enums.h
  3. // // \ V/ @Brief
  4. // // | "") @Author lijinwen, ghz005@uni-trend.com.cn
  5. // // / | @Creation 2024-05-17
  6. // // / \\ @Modified 2024-06-24
  7. // // *(__\_\
  8. // // ******************************************************************
  9. #pragma once
  10. #include <cstdint>
  11. namespace Protocol
  12. {
  13. class xxxEnums
  14. {
  15. public:
  16. enum class XXX
  17. {
  18. };
  19. };
  20. }