You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#if !defined(UMSTRING_H)
|
|
#define UMSTRING_H
|
|
|
|
#ifdef _MFC_VER
|
|
|
|
#include <afx.h>
|
|
typedef CString UMString;
|
|
|
|
#else
|
|
|
|
#include <string>
|
|
typedef std::string UMString;
|
|
|
|
#endif
|
|
|
|
#endif
|