Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenttei7.cpp
Go to the documentation of this file.
00001 /* 00002 * It is known that this code not compiled by following compilers: 00003 * 00004 * MSVC 6 00005 * 00006 * It is known that this code compiled by following compilers: 00007 * 00008 * MSVC 8 Beta 00009 */ 00010 00011 /* 00012 * This code represent what STLport waits from a compiler which support 00013 * the rebind member template class technique (!_STLP_DONT_SUPPORT_REBIND_MEMBER_TEMPLATE) 00014 */ 00015 00016 template <typename T1> 00017 struct A 00018 { 00019 template <typename T2> 00020 struct B 00021 { 00022 typedef A<T2> _Type; 00023 }; 00024 }; 00025 00026 00027 template <typename T, typename A> 00028 struct C 00029 { 00030 typedef typename A:: template B<T>::_Type _ATType; 00031 }; Generated on Sun May 27 2012 04:35:14 for ReactOS by
1.7.6.1
|