I am new to R. Suppose I have an R code which takes certain real time inputs and gives output in real time. I want to share it with a third party which uses C++ in such a way that the logic of my code is not seen but he will get output with the input he provides.
So here there are two things. 1: He uses C++ to give input 2: I have to somehow integrate my R code with his data in such a way that he can get only the output, not my logic
so my objective is two fold. One is integration with C++ and second is code protection.
How can this be done?