CISC181, Practice With Classes In both cases, write the complete class declaration as a .h file, and defintions for all member functions as a .cc file. Just for today: all function definitions in the .cc file, and only function prototypes in the .h file. (Yes, it is possible to do function defs inside the class .h file but for today, we won't). Be sure to use pre-processor directives to make your .h file idempotent. Be sure to use "const" on all member functions where it is appropriate. (1) Write a class to represent a point in the Cartesian plane. Represent x and y as double. Include * a constructor that initializes the point to the origin * set and get functions for x and y Also include a function distFromOrigin() the returns the distance from the origin, and a function that returns the angle of that point in radians (both functions should return double.) (2) Write a class to represent a time of day (hours and minutes). Include a constructor that takes an integer # of hours, and integer # of minutes in military time (e.g. 13:25 represents the start time for the 010-012 section lecture, and 14:30 represents the start time of the 013-015 section lecture.) Include set and get functions for hour and minute. The setHour() function and setMinute() functions should return bool--- return true if the parameter values were valid and the attribute was set, and return false if the parameter values were NOT valid, and the attribute was NOT set. For the constructor, if invalid values were passed in, just set the value of the time to 00:00 (i.e. midnight).