X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2703e1ee2a79e9fc7c86ebb122caa515ecf24d14..1123a69b82b73a4edd1cc9012330de33919d171e:/include/xbt/automaton.h diff --git a/include/xbt/automaton.h b/include/xbt/automaton.h index 0cdf31f64c..c24453f727 100644 --- a/include/xbt/automaton.h +++ b/include/xbt/automaton.h @@ -1,3 +1,9 @@ +/* Copyright (c) 2011-2014. The SimGrid Team. + * All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + #ifndef _XBT_AUTOMATON_H #define _XBT_AUTOMATON_H @@ -28,7 +34,7 @@ typedef struct xbt_automaton { typedef struct xbt_automaton* xbt_automaton_t; typedef struct xbt_automaton_exp_label{ - enum{or=0, and=1, not=2, predicat=3, one=4} type; + enum{AUT_OR=0, AUT_AND=1, AUT_NOT=2, AUT_PREDICAT=3, AUT_ONE=4} type; union{ struct{ struct xbt_automaton_exp_label* left_exp;