Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentypeinfo_header_test.cpp
Go to the documentation of this file.
00001 /* This test purpose is simply to check Standard header independancy that 00002 * is to say that the header can be included alone without any previous 00003 * include. 00004 * Additionnaly, for C Standard headers that STLport expose, it can also be 00005 * used to check that files included by those headers are compatible with 00006 * pure C compilers. 00007 */ 00008 #include <typeinfo> 00009 00010 #if 0 /* !defined (_STLP_NO_RTTI) && !defined (_STLP_NO_TYPEINFO) */ 00011 /* SourceForge: STLport bug report 1721844 00012 * type_info is not a member of stlp_std 00013 */ 00014 class A {}; 00015 00016 void type_info_header_test() 00017 { 00018 const std::type_info& ti = typeid(A); 00019 } 00020 #endif Generated on Sat May 26 2012 04:34:48 for ReactOS by
1.7.6.1
|