submit a c program file that first declares the class book store and then implements 5154673
Submit a C++ program file that first declares the class Book Store and then implements a few member functions. Specifically, a BookStore object manages the following vital information of a bookstore: 1. the location of a book store 2. the year when the store was established 3. total number of employees 4. a collection of books available at a store. Please use the following data type Book: struct Book string title; string language; string firstAuthor: For your BookStore class, please include the prototypes of the following member functions: 1. a default constructor 2. a non-default constructor that allows one to provide the initial value of a store's location 3. a read-only member function to return the store's year of establishment 4. a member function called addАNew Book that allows one to add a new book to the store's collection 5. an overloaded