- Can't compile source. Need help...

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@284 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
fpaparel 2006-02-02 13:46:48 +00:00
parent b00d733ef0
commit b1822d7284
5 changed files with 695 additions and 0 deletions

View file

@ -25,6 +25,9 @@
#include "parseopts.hh"
#include "startgui.hh"
#include "backend/schedulable.hh"
#include "backend/process.hh"
#include <iostream>
#include <string>
#include <vector>
@ -50,6 +53,10 @@ main(int argc, char* argv[])
}
start_gui(argc, argv);
//SMOKE-TEST for backend classes
sgpem::Process pp(0,10,5);
return 0;
}