ComStatistics.h 416 B

123456789101112131415161718192021222324
  1. #ifndef COMSTATISTICS_H
  2. #define COMSTATISTICS_H
  3. #include <QString>
  4. class ComStatistics
  5. {
  6. public:
  7. ComStatistics(QString sensor_name);
  8. void ReQuestCount_increase();
  9. void CrcErrorCount_increase();
  10. void TimeoutCount_increase();
  11. void Save2File(QString filepath);
  12. private:
  13. int request_count;
  14. int crcerror_count;
  15. int timeout_count;
  16. QString tag_name;
  17. };
  18. #endif // COMSTATISTICS_H