Source code of Windows XP (NT5)
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.

19 lines
278 B

  1. #if !defined(CPPStringW_INCLUDE)
  2. #define CPPStringW_INCLUDE
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. class CPPStringW: public CStringW
  7. {
  8. public:
  9. CPPStringW() {};
  10. ~CPPStringW() {};
  11. void TrimBlanks()
  12. {
  13. TrimLeft();
  14. TrimRight();
  15. }
  16. };
  17. #endif