G
Guest
Hello,
I defined a class name MyClass.
I would like to define an array of 4 by 8 of that class.
I would like to define a pointer to the array of MyClass.
I tried it with static definition:
MyClass m_MyClass[4][8] ;
I can not seem to find the way to define a pointer to this array?!?!?
I tried also to define it with the new operator but had similar results.
Any ideas how to do it?
Eitan
I defined a class name MyClass.
I would like to define an array of 4 by 8 of that class.
I would like to define a pointer to the array of MyClass.
I tried it with static definition:
MyClass m_MyClass[4][8] ;
I can not seem to find the way to define a pointer to this array?!?!?
I tried also to define it with the new operator but had similar results.
Any ideas how to do it?
Eitan