#include "sorts.h" int main(int argc, char* argv[]) { Sorter newSort; CheckArguments(argc, argv, &newSort); newSort.RunSorts(); return 0; }