tags:

views:

40

answers:

1

Hi,

I have a very basic doubt, In C++ does there exist a data structure for each Type which stores static data and methods defined by that type, similar to the data structure that exists in .NET for every Type.

Regards, Jeez

+3  A: 

No, there's no such thing (called reflection) in C++.

dark_charlie
Well, except for RTTI, but that's barely reflection...
Oli Charlesworth
Thanks for the answer dark and oli
JeeZ