Add state saving functions and update processTrace accordingly.
[lttv.git] / ltt / branches / poly / include / lttv / iattribute.h
index 1613a4516aa617083c7b605aff7e623fa2016864..24cbd57db692d8f1f47c4f34271287c61295883d 100644 (file)
@@ -3,7 +3,7 @@
 
 
 #include <glib-object.h>
-#include <time.h>
+#include <ltt/time.h>
 
 /* The content of a data structure may be seen as an array of pairs of
    attribute name and value. This simple model allows generic navigation 
@@ -12,8 +12,6 @@
 
 typedef GQuark LttvAttributeName;
 
-typedef struct timespec LttvTime;
-
 typedef enum _LttvAttributeType {
   LTTV_INT, LTTV_UINT, LTTV_LONG, LTTV_ULONG, LTTV_FLOAT, LTTV_DOUBLE, 
   LTTV_TIME, LTTV_POINTER, LTTV_STRING, LTTV_GOBJECT, LTTV_NONE
@@ -26,7 +24,7 @@ typedef union LttvAttributeValue {
   unsigned long *v_ulong;
   float *v_float;
   double *v_double;
-  LttvTime *v_time;
+  LttTime *v_time;
   gpointer *v_pointer;
   char **v_string;
   GObject **v_gobject;
This page took 0.02388 seconds and 4 git commands to generate.