Mobile API Reference  MicroStrategy 2019
String.h
Go to the documentation of this file.
1 //==============================================================================================
2 // FILENAME : BaseString.h
3 // AUTHOR : Juan Pablo Muraira
4 // CREATION : 9/26/01
5 // Copyright (C) MicroStrategy Incorporated 2001
6 // All Rights Reserved
7 //==============================================================================================
8 #ifndef MBase_String_h
9 #define MBase_String_h
10 
11 #include "Allocator.h"
12 
13 #include "PDCHeader/PDCstring"
14 
15 
16 // This used to be named String.h, but that conflicted with string.h
17 // on case-insensitive file systems.
18 
19 
20 namespace MBase
21 {
26  typedef std::basic_string< WCHAR, std::char_traits< WCHAR >, Allocator< WCHAR > > String;
27 }
28 
29 #endif // MBase_String_h
Definition: Allocator.h:47
std::basic_string< WCHAR, std::char_traits< WCHAR >, Allocator< WCHAR > > String
Definition: BaseString.h:26