X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/84cfe8b4f9de138942e14fc9f6efb0c1815a8986..b87fc0829538ec066fd077e6c30ee6270b8abd78:/src/instr/instr_private.h?ds=sidebyside diff --git a/src/instr/instr_private.h b/src/instr/instr_private.h index a2a6b153bc..e8e38d4536 100644 --- a/src/instr/instr_private.h +++ b/src/instr/instr_private.h @@ -57,27 +57,27 @@ typedef enum { } e_entity_types; //-------------------------------------------------- -class s_type; -typedef s_type *type_t; -class s_type { + +class ess_type { public: char *id; char *name; char *color; +}; + +class s_type; +typedef s_type *type_t; +class s_type : public ess_type { + public: e_entity_types kind; s_type *father; xbt_dict_t children; xbt_dict_t values; //valid for all types except variable and container }; -typedef s_type s_type_t; - //-------------------------------------------------- -class value { +class value : public ess_type{ public: - char *id; - char *name; - char *color; type_t father; value* ret; value(const char* name, const char* color, type_t father); @@ -114,7 +114,6 @@ class s_container { s_container *father; xbt_dict_t children; }; -typedef s_container s_container_t; //-------------------------------------------------- class PajeEvent {