Consider the following header file (NumberList.h). This prog…

Consider the following header file (NumberList.h). This program will add decimal values to a link list. Write the corresponding cpp file (NumberList.cpp) to include the function bodies for add(), displayList() and a destructor to deallocate the memory used by the list.          #include using namespace std; class NumberList { protected:     // Declare a class for the list node     struct ListNode     {        double value;        ListNode *next;        ListNode(double value1, ListNode *next1 = NULL)        {           value = value1;           next = next1;        }          };       ListNode *head;                   // List head pointer public:     NumberList() { head = NULL;  }    // Constructor     ~NumberList();                    // Destructor     void add(double number);     void displayList() const; };