Is it possible to pass a pointer to a constructor or a class definition
as argument to a function? Maybe in a way similar to passing function
pointers...?
The function should construct a number of objects using the given
constructor. The objects should all inherit from a base class.
It's not possible to pass actual objects, since it's not given on
beforehand, how many should be created.
Thanks,
Morten
as argument to a function? Maybe in a way similar to passing function
pointers...?
The function should construct a number of objects using the given
constructor. The objects should all inherit from a base class.
It's not possible to pass actual objects, since it's not given on
beforehand, how many should be created.
Thanks,
Morten
Comment