which boost library should I use to implement RTTI in my project?? Is it Statechart library?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
RTTI is built into the C++ language. However, you’ll find a few RTTI-related, convenient tools in Boost, e.g. Boost.TypeTraits which enables you to checks such as
is_base_of(),has_trivial_constructor()and loads of other stuff. Boost.FunctionTypes might also be worth checking out.