// MyList.h #ifndef MYLIST_H #define MYLIST_H #include "ListElement.h" class MyList { private: ListElement* head; public: MyList(); void insert(int); int pop(); void print(); }; #endif