RTTI is an abbreviation for runtime type information. C++ provides runtime type inspection operators dynamic_cast and typeid. However, the dynamic_cast is not efficient and requires sacrificing of performance. This project guides you implement a high performance RTTI library
Teacher
Recommended For You