I am working on a codebase at my current project where the front end has been coded using Java and the backend using C++. I am basically a C++ guy so not sure how I can invoke a C++ method from java code.
Can anyone point to a relevant link or provide some outline steps?
I tried googling but apart from the fact that I need to use JNI, I couldn't find much information.
I am getting used to the fact that unlike in C and C++ which includes header files, in Java you use the keywords package and import to get at code (functionality in terms of library?) elsewhere. So if I had the C++ code in a path say a/b/c in multiple header and source files (.h and .cpp), how can I use the above two constructs, i.e. package and import, to access the functionality provided by the code?