On 10/06/2013 at 10:38, xxxxxxxx wrote:
User Information:
Cinema 4D Version:
Platform:
Language(s) :
---------
Hi, some plugins use this:
return SUPER::BlaBla_foo(x, y, z);
the hashmap.h uses this:
Super::ConstIterator::operator++();
but I can't. I get "name followed by '::' must be a class or namespace name"
I do use this:
ObjectAncestor::BlaBla_foo(x, y, z);
but I wonder how other can use SUPER / Super and to what extent it has any purpose / is better than just using the name of the ancestor.