From: Russell B. <ru...@ba...> - 2004-04-23 22:38:42
|
Given: class Foo { std::vector<int> bars; } I was expecting FullTypeName() on the bars member to give me "std::vector<int>". Instead it gives me: "std::" Is that a bug or by design? Is there any way I can get the full typename and parse it myself into [ [std::] [vector] [int] ] ? Thanks, Russell Balest |