Assume the existence of a class named Window with functions named close and freeResources, both of which accept no parameters and return no value. Write a destructor for the class that invokes close followed by freeResources.

.
.
Click on the title for the solution
.
.

This is the answer:

:

~Window()
{close();freeResources();};

Comments