]>
git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/modules/lseditor/wxstldefs.h
1 #ifndef __WXSTLDEFS_G__
2 #define __WXSTLDEFS_G__
7 // defines some very commonly used container types
8 // for both template and macro-based configurations
10 #if defined( wxUSE_TEMPLATE_STL )
18 //#include <strclass.h>
21 #include "wx/string.h"
22 #define string wxString
28 #include "wx/string.h"
31 // FOR NOW:: quick n' dirty:
33 #define string wxString
37 #if defined( wxUSE_TEMPLATE_STL )
39 typedef vector
<string
> StrListT
;
40 typedef vector
<int> IntListT
;
44 typedef WXSTL_VECTOR(string
) StrListT
;
45 typedef WXSTL_VECTOR_SHALLOW_COPY(int) IntListT
;