#ifndef DONLIST_H #define DONLIST_H class DonationList { private: int numDonations; double *donations; //pointer to dynamically allocated array of doubles double **arrPtr; //pointer to dynamically allocated array of pointers to doubles void selectSort(); public: DonationList(int num, double gifts[]); //constructor ~DonationList(); //destructor void show(); void showSorted(); }; #endif