//slist.h //header file for class SortedList #ifndef SLIST_H #define SLIST_H #include "list.h" class SortedList:public List { public: void insert(Type x); int find(Type x); }; #endif