automatic casting of certain types #1172
alex1234567890123456789
started this conversation in
General
Replies: 1 comment
-
Take a look here. You can probably do what you want with a type summary, and definitely with a synthetic provider. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to automatically cast certain types, maybe through python scripting? I have a bunch of interface classes, with underlying implementation classes. When debugging, it does me no good to see a bunch of pointers to opaque MyType variables, when what I really want to see is pointers to MyTypeImpl classes. I can manually cast them in the command window and print them out (
p *(MyTypeImpl *) var
), but I want to see them like that in the variables window.Beta Was this translation helpful? Give feedback.
All reactions