Hello,
In Cxx.jl, I can create structs and read values of members, but is there a way to set the value of a member directly, i.e., without creating a setter function?
obj = @cxxnew MyStruct() #create instance
xval = @cxx obj->x read member value
@cxx obj->x = 5.0 #how to set? this doesn’t work
Thanks!