I just built an FFI Interface for a camera in C++ called from Haskell, it would be nice to see an interface done for C++ with objects. I got it working pretty quickly searching around from other sites, but it would be cool if it was all in one place.
Sort of off topic, I had an issue where the main in C++ ran perfectly fine calling into what I believe to be a singleton, but calling from Haskell led to that call freezing every time. If I put the call to the singleton into a static block, it runs fine calling from Haskell. Is this probably the "Static order initialization fiasco"?
Charlie