When using CxxWrap.jl, the behavior is entirely written in C++, then at Julia runtime, the code is loaded into the Julia state. How do I document this? There is no .jl file to use for documenter.jl.
The only way I can think of is to write the docs language-agnostic which I am not a fan of because C++ and Julia are quite different, for example a C++ function Type::foo() would usually be Module.foo!(Type) in Julia, thats different enough notation that people will get confused. It also means that the Julia users would have to know C++, even though the final project is entirely in Julia