您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829
  1. #pragma once
  2. #include "Boiler.h"
  3. class Helpers
  4. {
  5. public:
  6. static void tempToStr(
  7. char* out
  8. , temp_t temp
  9. , signed char width
  10. );
  11. static void fillLine(
  12. char* line
  13. , int length
  14. , char c
  15. );
  16. static void center(
  17. char* line
  18. , const char* text
  19. , int length
  20. , char c
  21. );
  22. };