I find that we can give 2 solutions,
1. Introduce Axis C++ own Array class. So the method signature becomes int EchoIntArray(AxisArray a)
2. Ask the C++ developer to specify the meaning of other parameters by using a predefined Axis C++ macro. Then the method signature becomes,
int EchoIntArray(int [], ARRAYINSIZE int);
Which is the best option to choose. IMO I like second.
3. Use something from STL?
