00001 #include "macros.h" // needs to be declared as first entry in .cpp or .h file! 00002 #include <iostream> 00003 using namespace std; 00004 #include "Driver.h" 00005 00118 int main(int argc, char** argv) 00119 { 00120 cout << "Starting..." << endl; 00121 Driver driver; 00122 for(int i = 1; i < argc; i++){ 00123 driver.instantiate(argv[i]); 00124 } 00125 cout << "...finished." << endl; 00126 return 0; 00127 } 00128 /* 00129 Wishlist: 00130 - commandline options: 00131 - help 00132 - list (lists the currently available exercises) 00133 - verbose 00134 - choose a logger environment 00135 */