UsbDecodeResult.cpp 728 B

123456789101112131415161718192021222324
  1. // // ******************************************************************
  2. // // /\ /| @File UsbDecodeResult.cpp
  3. // // \ V/ @Brief
  4. // // | "") @Author lijinwen, ghz005@uni-trend.com.cn
  5. // // / | @Creation 2024-1-4
  6. // // / \\ @Modified 2024-1-15
  7. // // *(__\_\
  8. // // ******************************************************************
  9. #include "UsbDecodeResult.h"
  10. namespace Protocol
  11. {
  12. void UsbDecodeResult::Add(const UsbDecodeResultCell* cell)
  13. {
  14. DecodeResultCells.push_back(*cell);
  15. }
  16. // void UsbDecodeResult::ClearData()
  17. // {
  18. // DecodeResultCells.clear();
  19. // ResultValid = false;
  20. // }
  21. }