THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 10/06/2004 at 04:25, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.2
Platform: Windows ;
Language(s) : C++ ;
---------
Hello all!
I want to do something similar to
BaseTag *p = new BaseTag[num];
in "normal" Cpp.
I think, the/a (?) solution is to use GeAlloc:
BaseTag *p = (BaseTag* )GeAlloc(sizeof(BaseTag) * num);
But how can I tell these BaseTag-Objects now that they are of tag-type Trestriction? Do I have to use BaseTag::Alloc()?
Thanks in advance!