#include #include #include #include #include using namespace std; int main (int argc, char ** argv) { Profile *profile = new Profile(argc, argv); Plot plot(profile); cout << "Begin." << profile->nProjs() << endl; plot.eventloop(); cout << "End." << endl; }