// assn1.cpp // The main for assignment #1. It simply calls the generate method of the // SubStrHander class. See notes on it below. #include "SubStr4.h" #include "SubStrHandler.h" int main(int argn,char **argv) { // In my implementation the methods of SubStrHandler are static. There // is no real need to instantiate a SubStrHandler because it has no data. // It is also templated on the substring class that you want it to work // with. See the SubStrHandler.h file for more on this. SubStrHandler::generate(); return 0; }