资 源 简 介
Introduction
Typeid is generic c++ typeid library, but no support rtti.
VS60 VS2003 VS2005 mingw32 typeid is same type name output.
Compiler
VS60 VS2005 VS2005 mingw32
Sample
```
vfc::type_id(100).name(); // output "int"
vfc::typeidt().name(); // output "int"
vfc::typeidt().name(); // output "int const &"
struct a
{
const int * test(int, const char *);
};
VFCMAKEID(a,0x2003);
vfc::type_id(&a::test).name(); //output "int const * (a::*)(int,char const *)"
```