On 06/07/2014 at 22:19, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 14
Platform: Windows ;
Language(s) :
---------
Hi
I am creating a BaseArray:
c4d_misc::BaseArray<Vector> MyVectorArray
If I try to pass it to a function, the compiler throws an error:
'c4d_misc::BaseArray<T>::BaseArray' : cannot access private member declared in class 'c4d_misc::BaseArray<T>'
I can pass a GeDynamicArray to a function without problems, but I would like to use BaseArray for its speed.
So basically, how do I pass a BaseArray to a function.