I'm trying to implement a new class which suppose to have an array like so:
class myclass {
OtherClass<something1, something2>* array;
....
}
I want my c'dor to create myclass with an array of size=k of OtherClass. How can I do that? Thanks!