Skip to content
main.cc 306 B
Newer Older
Daniel Lins de's avatar
Daniel Lins de committed
#include <iostream>
#include <Profile.h>
#include <Component.h>
#include <Projection.h>
#include <Plot.h>

using namespace std;

int main (int argc, char ** argv)
{

	Profile *profile = new Profile(argc, argv);
Daniel Lins de's avatar
Daniel Lins de committed
	Plot plot(profile);

	cout << "Begin." << endl;
Daniel Lins de's avatar
Daniel Lins de committed
	plot.eventloop();
	cout << "End." << endl;
}