Version
Debug output
For virtually any object displayed in the Object tool, it is possible for the developer to cause the Object tool to display a user-definable string value next to the object address.
In order to have the instances of a class display such a string in the object tool, make the class an heir to class DEBUG_OUTPUT
. Then implement the feature debug_output
to return the string to be displayed. At run-time, the debugger will automatically query this feature on all objects that define it, and then will display the results in the object tool and the evaluation tool.
Back to Object tool