選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Helpers.h 414B

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. };