javacpp icon indicating copy to clipboard operation
javacpp copied to clipboard

The missing bridge between Java and native C++

Results 105 javacpp issues
Sort by recently updated
recently updated
newest added

Yes, I know you already know but that was tagged on to the HDF5 stuff so proper bug report time Is there still a skip tests switch? I wanna do...

enhancement
help wanted

I want to ask a question. Can Java lambda expressions be used with C++ versions of Lambda expressions (i.e. `std::function`)? Moreover, the "wrapping" in one direction and the other? ```...

enhancement
help wanted
question

For example, for this Java code: ```Java @Namespace("NativeLibrary") @Properties(inherit = org.example.NativeLibraryConfig.class) public class NativeClass extends Pointer { static { Loader.load(); } /** Default native constructor. */ public NativeClass() { super((Pointer)null);...

enhancement
help wanted
question

Hi everyone. The issue is the following. I have to transfer ownership of an allocated data (an array) from C++ to Java. How would I do that? As a side...

enhancement
help wanted

Well this project is for C++ i know but. Rust is becoming more popular. It would be good for support binding Java Rust Rust can import C++ libs. Maybe it...

enhancement
help wanted

My namespace name WinToastLib, I added the InfoMap configuration ` infoMap.put(new Info("WinToastLib").skip());` But he didn't work. Other configurations are working. Is there a more convenient way to ban namespace from...

enhancement
help wanted

There is new framework to run java on microcontrollers. http://www.microej.com This framework has JNI support: http://www.microej.com/mix-embedded-java-and-c-and-reuse-your-legacy-c-code-base/ Can we use this framework with javacpp ? Or is it easy to add...

enhancement
help wanted

Hi I have the following example that fails to generate wrappers for `Z1` and `Z2` classes. - For `Z1` it will generate extra constructor call for `Y` that will no...

enhancement
help wanted

I'd like for the JNI code to attach as a daemon thread. This will allow my applications to cleanly exit when using the hack provided #143. It will also be...

help wanted
question

Add support for variadic templates eg. ``` template returntype functionname(Arguments... args); ``` or ``` template class classname; ``` Currently this throws an NPE: `````` Caused by: java.lang.NullPointerException at org.bytedeco.javacpp.tools.Parser.parameters(Parser.java:1366) at...

enhancement
help wanted