2. Report Heading Design a class called Heading that has datamembers to hold the company name and the report name. Atwo-parameter default constructor should allow these to bespecified at the time a new Heading object is created. If the usercreates a Heading object without passing any arguments, “ABCIndustries” should be used as a default value for the company nameand “Report” should be used as a default for the report name. Theclass should have member functions to print a heading in eitherone-line format, as shown here: Pet Pals Payroll Report or infour-line “boxed” format, as shown here:******************************************************** Pet PalsPayroll Report******************************************************** Try tofigure out a way to center the headings on the screen, based ontheir lengths. Demonstrate the class by writing a simple programthat uses it.