mirror of https://github.com/tongzx/nt5src
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.
20 lines
278 B
20 lines
278 B
#if !defined(CPPStringW_INCLUDE)
|
|
#define CPPStringW_INCLUDE
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class CPPStringW: public CStringW
|
|
{
|
|
public:
|
|
CPPStringW() {};
|
|
~CPPStringW() {};
|
|
void TrimBlanks()
|
|
{
|
|
TrimLeft();
|
|
TrimRight();
|
|
}
|
|
};
|
|
|
|
#endif
|