#ifndef __ALIST_H #define __ALIST_H const int MAX = 100; class List { public: List(void) { size = 0; } void Insert(int newValue); // add newValue to "beginning" of list int Delete(void); // return and delete "first" item on list void Print(void); // print list private: int size; // number of items in list int items[MAX]; }; #endif