Hi there,
I'm trying to map a library called Eigen (
http://eigen.tuxfamily.org/index.php?title=Main_Page) or at least a very small part of it. The problem is, this library is very complex (for me, anyway :D) C++ templating code, and I don't know how to make a preset for it, so any input will be appreciated.
I've tried with the following, but there is no output at all:
infoMap.put(new Info("Eigen::Matrix<int, 2, 1>").pointerTypes("Vector2i").define());
I've also tried with the following, which gives me output but broken in different ways:
infoMap.put(new Info("Eigen::Matrix<int, 2, 1, 0, 0, 0>").pointerTypes("Vector2i").define());
Anyway, I have other issues (like after doing that last line, JavaCPP replaces all usages of other Vector classes (like Vector3f) with Vector2i in other functions), but let's start with this one.
Thanks in advance!