// assn2.cpp // This contains the code for main for assignment #2. #include "SubStrHandler.h" #include "SSSortLinkList.h" #include "SubStr4.h" void main() { SSSortLinkList list; // These two calls are to static functions in the SubStrHandler class. // That class is templated on the type of substring you want it to take. // See SubStrHandler for more description. SubStrHandler::load(&list); SubStrHandler::markEnglish(&list); list.print(); }