``` class TestTemplate { public: int test(int *a) {} int test(unsigned*a) {} }; ``` JavaCpp will only generate one function ```java public native int test(IntPointer a); public native int test(IntBuffer a); public native int test(int[] a); ``` It does not work by specifying the following ```java infoMap.put(new Info("TestTemplate::test(unsigned *)").javaNames("testUnsigned")); ``` or ```java infoMap.put(new Info("TestTemplate::test(unsigned*)").javaNames("testUnsigned")); ``` How to help JavaCpp generate both functions? Any guide is appreciated.