Yousof
Yousof
Thanks. It seems that does not work. For example I have the following abstract base struct and children structs that I need bindings for them ```C++ struct Base{ Base() =...
@lyskov What are `PyCallBack_` structs that are being generated? What does the `callback_structure` mean in this context?
@lyskov On this branch: https://github.com/yosoufe/binder/tree/yousof/dev_cosntructors You can check the differences: https://github.com/RosettaCommons/binder/compare/master...yosoufe:yousof/dev_cosntructors I have added some more configs like ``` -callback_struct Base -general_callback_structs someWord ``` So I can turn off generating...
Thank you @lyskov I am making a C++ API that has some Base classes that the user should not make object from them. In C++ they cannot, because the base...
I cannot replicate it anymore but I do not know why the binding code for that `someFunction` is not generated.
Thanks. Can you share what do I need to bind your example? I guess I am missing something
Sorry. I noticed that and deleted my previous message. I have a problem regarding this. As I said before I am writing a C++ API and make python bindings for...
I made some progress. If I change to the following I get the binding code ```C++ // file: "api.h" #pragma once #include #include #include #include namespace ApiNameSpace { struct Base0...
> Does this mean that the code will not be maintained anymore neither by intel nor by the community? Unfortunately, It seems so
What I understood so far, when I call `ctx.query_devices()` and save the result in a python variable, It cannot connect to the device at the `pipeline.start`. `ctx.query_devices()` runs the `usb_messenger...