I\'ve found some very interesting c++ code on stackoverflow and I\'m very confused about it because as author says it should work and it fails on my gcc 4.5.1 and 4.4 :(
In this question (link) it was said that the line below (in each unit) would remove as much RTTI as possible:
I have started writing web services in Delphi 2010 and am unit testing to make sure they function as planned. My unit tests of the code passed but one web service method didn’t return a value when ca
I have a two tier Delphi for Win32 application with a lot of business logic implemented in a god object I want to outsource into a separate service. This separate service should be accessed by multipl
Is there a reason why std::type_info is specified to be polymorphic? The destructor is specified to be virtual (and there\'s a comment to the effect of \"so that it\'s polymorphic\" in The Design and
Is there at way, at runtime, to find all classes that descend from a particular base class? For example, pretend there is a class:
I want to count all the instances of derivers from my class, I\'m trying to do it like so: .h file: #ifndef _Parant
Is there a way to explore a interface\'s properties with Rtti? The following code does not work: procedure ExploreProps;
I want to record the std::type_info of a variable so that on load I will be able to re-create the appropriate type variable.
I\'m building a shared library with f-no-rtti. Internally, this library throws std:invalid_argument and catches std::exception, but the catch clause is never entered.