Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #include <config.h>
00009 #include <gtkmm/main.h>
00010
00011 #include "main_window.hh"
00012 #include "rec_param_dlg.hh"
00013 #include "window1.hh"
00014 #include "window2.hh"
00015 #include "window3.hh"
00016
00017 int main(int argc, char **argv)
00018 {
00019
00020 Gtk::Main m(&argc, &argv);
00021
00022 main_window *main_window = new class main_window();
00023
00024 rec_param_dlg *rec_param_dlg = new class rec_param_dlg();
00025
00026 window1 *window1 = new class window1();
00027
00028 window2 *window2 = new class window2();
00029
00030 window3 *window3 = new class window3();
00031 m.run(*main_window);
00032 delete main_window;
00033 delete rec_param_dlg;
00034 delete window1;
00035 delete window2;
00036 delete window3;
00037 return 0;
00038 }