// DoubleList.h - wdg - 2009 // header for primitive List #ifndef DOUBLELIST_H #define DOUBLELIST_H class DoubleList { public: static const double NO_SUCH_ELEMENT = -99.99; DoubleList(); void add(double item); double getItem(int position) const; void loadFile(string fileName); private: static const int MAX=100; double A[MAX]; int count; }; #endif