#if !defined(UMSTRING_H) #define UMSTRING_H #ifdef _MFC_VER #include typedef CString UMString; #else #include typedef std::string UMString; #endif #endif