Define a class named Window with the following members: - An int member variable named width - An int member variable named height - A constructor that accepts two int arguments. The first argument should be assigned to width and the second argument should be assigned to height. - The Window class should declare the areSameSize function, described below, as a friend. Outside of the Window class, write a function named aresamesize that accepts two Window objects as arguments, and returns a bool indicating whether the two Window objects are the same size. Two Window objects are the same size if their widths and heights match.