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 00123 int main(int argc, char** argv) 00124 { 00125 cout << "Starting..." << endl; 00126 Driver driver; 00127 for(int i = 1; i < argc; i++){ 00128 driver.instantiate(argv[i]); 00129 } 00130 cout << "...finished." << endl; 00131 return 0; 00132 } 00133 /* 00134 Wishlist: 00135 - commandline options: 00136 - help 00137 - list (lists the currently available exercises) 00138 - verbose 00139 - choose a logger environment 00140 */