D
Deepak Jharodia
I'm using a templatized class in GCC based environ
template<class A, class B>
class foo {...
....} F;
Now I want to know that particular instance of this class was
instantiated with what template arguments. typeid.name() returns a
strange string with all the info but abbreviated and probably platform
specific.
How can I unscramble it and probably use it my program during runtime?
TIA
template<class A, class B>
class foo {...
....} F;
Now I want to know that particular instance of this class was
instantiated with what template arguments. typeid.name() returns a
strange string with all the info but abbreviated and probably platform
specific.
How can I unscramble it and probably use it my program during runtime?
TIA