Problem
A class called CandyStock, which will represent candy that convenience store keeps in stock. The members you must include are: the current count of stock on the shelf, the price, the name, the shelf number where the candy is placed on display (store shelf numbers go from 1 to 50). Include a getter and a setter for each variable (there should be for "set___()" functions and four "get____()" functions. Write the Class declaration including all members of the new class "CandyStock". You only have to provide the declaration (the CandyStock.h file contents), not the function definitions.