I am a total C++ noob, and I am having some trouble returning an array from my methods. I have a header file with the following method declaration:
virtual d
C++ doesn't play nice with non-local arrays, more likely you should be using an actual container like std::array or std::vector. I don't think it's possible to return an array from a function.
std::array
std::vector