Write a c++ class definition for an abstract data typedescribing a bookstore inventory. Each book has the followingattributes:
Book Title (character string);
Book Author (character string);
Book Price (Floating point number having two decimal places);
Count of books on hand (int);
The member functions are as follows:
A constructor that is used to initialize all four elements of thestructure to values inputted by the user;
A function that displays in a readable tabular form the contents ofa book in inventory;
A modify function that has an argument a code ('T', 'A', 'P', or'C') indicating which attribute (title,author,price or count) ofthe indicated book is to be changed. Based upon the attribute code,the appropriate prompt should be displayed to allow the user toenter the new value of the attribute.