main window call process_traceset for each viewer
[lttv.git] / ltt / branches / poly / include / lttv / common.h
1 #ifndef COMMON_H
2 #define COMMON_H
3
4 #include <stdio.h>
5 #include <ltt/ltt.h>
6 #include <gtk/gtk.h>
7 #include <lttv/lttvfilter.h>
8
9 #define MAX_NUMBER_EVENT "MAX_NUMBER_EVENT"
10 #define TRACESET_TIME_SPAN "TRACESET_TIME_SPAN"
11
12 typedef struct _MainWindow MainWindow;
13 typedef struct _Tab Tab;
14
15 /* constructor of the viewer */
16 typedef GtkWidget * (*lttv_constructor)(MainWindow * main_window,
17 LttvTracesetSelector * s, char *key);
18 typedef lttv_constructor view_constructor;
19
20 typedef struct _TimeWindow {
21 LttTime start_time;
22 LttTime time_width;
23 } TimeWindow;
24
25 #endif // COMMON_H
This page took 0.037371 seconds and 4 git commands to generate.