git-svn-id: http://ltt.polymtl.ca/svn@221 04897980-b3bd-0310-b5e0-8ef037075253
[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
8 typedef struct _mainWindow mainWindow;
9 typedef struct _systemView systemView;
10 typedef struct _tab tab;
11 typedef struct _TimeInterval TimeInterval;
12
13 /* constructor of the viewer */
14 typedef GtkWidget * (*lttv_constructor)(mainWindow * main_window);
15 typedef lttv_constructor view_constructor;
16
17 struct _TimeInterval{
18 LttTime startTime;
19 LttTime endTime;
20 };
21
22
23 #endif // COMMON_H
This page took 0.030116 seconds and 5 git commands to generate.