So in this class in the destructor I delete each object pointed in the CompConfig array. Now my question is do I have to also delete this array like this:
delete [] &CompConfig;
or would the space allocated to this array be automatically deleted once the class instance is deleted?