From a2ff7cc7c5bf86435c85fcc21ca6edc6c20cde3b Mon Sep 17 00:00:00 2001 From: Takishipp Date: Wed, 16 Aug 2017 10:58:17 +0200 Subject: [PATCH] Factorize s_type and value instr class --- src/instr/instr_private.h | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/instr/instr_private.h b/src/instr/instr_private.h index 45bf1235f2..9cf8031370 100644 --- a/src/instr/instr_private.h +++ b/src/instr/instr_private.h @@ -56,27 +56,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); @@ -113,7 +113,6 @@ class s_container { s_container *father; xbt_dict_t children; }; -typedef s_container s_container_t; //-------------------------------------------------- class PajeEvent { -- 2.20.1