Is it possible to enhance existent c++ debugger via extensions? #2694
Unanswered
FlyinCow
asked this question in
Extension Development QnA
Replies: 1 comment
-
Hi @FlyinCow , In order to extend and extension, the extension itself must expose an API. Doing so, your extension could contribute to how the C++ extension work. Personally, I never used the C++ extension, and a quick look to its documentation, I didn't find any API being exposed. Based on your description, I think the best approach would be to reach the C++ extension developer team. You could ask for exposing an API, or for contributing such feature directly on it. Hope this helps |
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.
-
I have to work with some geometry models in my daily work. While debugging our c++ code, it is hard to view models while debugging, so I'm interested in develop a VSCode extension. Ideally, this extension provides these features:
.brep
file in OCCT format or triangulation data and I think rendering should not be a problem withthree.js
)I'm new to VSCode extension development and debuggers, I wonder is this doable to fetch c++ objects from a VSCode c++ debugger extension (typically cpptool)?
Beta Was this translation helpful? Give feedback.
All reactions