How to use plugins written in C++ from C#
-
Hello
(sorry for the translation of Bing)It is possible to use plugins written in C++ with their signals and slots from C#?
The idea is to create a Web interface using the same libraries as the desktop interface.
Best regards
-
In C# you can use unmanaged (which means non-dotnet) code via "marshalling":http://www.codeproject.com/Articles/66245/Marshaling-with-C-Chapter-1-Introducing-Marshaling.
If you put the desired code into a library, you should be able to re-use the .DLL in your dotnet project. -
Hello
I found this:
"http://qt-project.org/forums/viewthread/20422":http://qt-project.org/forums/viewthread/20422
I now have to see how to implement signals and slots
Thanks
-
Uh, didn't remember this 8)