00001 /* 00002 * FE v0.0 00003 * by hackervalley@free.fr 00004 * http://hackervalley.free.fr 00005 * May 2004 00006 * this program is licensed under the GPL. 00007 */ 00008 00009 #include <iostream> 00010 00011 #include "FE.hh" 00012 00013 using namespace std; 00014 using namespace FE; 00015 00016 int 00017 main (int argc, char **argv) 00018 { 00019 cout << "FE v0.0 " << endl; 00020 00021 // Init 00022 00023 // CreateGui 00024 Gui *gui = new Gui; 00025 gui -> create_main_window (); 00026 00027 // loop 00028 return gui->run(); 00029 00030 delete gui; 00031 00032 }