Digitalisierte Elektroverteilung zur permanenten Verbraucherüberwachung
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CustomStringUtilities.h 322B

1234567891011121314
  1. #pragma once
  2. #include <string>
  3. class CustomStringUtilities
  4. {
  5. private:
  6. static const char* typeOfWhitespaces;
  7. static const char* typeOfWhitespacesReturn;
  8. public:
  9. //remove whitespaces from the passed string
  10. static void removeAllWhitespaces(std::string& str, bool trimReturn = true);
  11. static void trim(std::string&);
  12. };