[project @ 12]
[mussa.git] / mussa_overlord.cc
1 //                        ----------------------------------------
2 //                        ---------- mussa_overlord.cc -----------
3 //                        ----------------------------------------
4
5
6 #include "mussa_overlord.hh"
7
8
9
10 char
11 MussaOverlord::parse_args(int argc, char **argv)
12 {
13   an_analysis.parse_args(argc, argv);
14 }
15
16
17 void
18 MussaOverlord::do_analysis()
19 {
20   an_analysis.analyze(para_file_path, window, threshold);
21 }
22
23 void
24 MussaOverlord::get_analysis()
25 {
26   an_analysis.load(ana_name);
27 }
28
29
30 void
31 MussaOverlord::spawnConnView(int x_max, int y_max)
32 {
33   ConnWindow *a_conn_win = new ConnWindow(x_max, y_max, "Mussa Connections", 
34                                           &an_analysis); 
35   Fl::run();
36 }