void setHour( int hr );? void setMinute( int mn );? bool equal( const Time& tm ) const; // change to ==? bool lessThan( const Time& tm ) const;?// change to <? void print ( ostream& ostr ) const; // change to <<Аprivate:? int hour;? int min;?};Рtime.hРOperator OverloadingРWhat is an operator?РOperator OverloadingРWhat is an operator?РAnswer: + - & * . [ ] ++ % РExample: num = 4 + 5; // has two operatorsРOperator OverloadingРWhat is an operator?РAnswer: + - & * . [ ] ++ % РExample: num = 4 + 5; // has two operatorsРWhat is overloading?РOperator OverloadingРWhat is an operator?РAnswer: + - & * . [ ] ++ % РExample: num = 4 + 5; // has two operatorsРWhat is overloading?РAnswer: two or more functions with the same name but different parameter listРExample: void foo ( int );? void foo ( string);