From: Toufik Boubehziz Date: Wed, 14 Jun 2017 07:17:16 +0000 (+0200) Subject: Merge branch 'master' into clean_events X-Git-Tag: v3.16~63^2^2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/61427a88a76a2c2ef25d0d5b8132995c6f550e5c Merge branch 'master' into clean_events --- 61427a88a76a2c2ef25d0d5b8132995c6f550e5c diff --cc src/instr/instr_private.h index 78e8aec654,9d10c4b1a3..64e6080b00 --- a/src/instr/instr_private.h +++ b/src/instr/instr_private.h @@@ -123,11 -123,38 +123,27 @@@ class PajeEvent virtual ~PajeEvent(); }; -class DefineContainerEvent : public PajeEvent -{ - public: - type_t type; - void print() override; - DefineContainerEvent(type_t); -}; - -//-------------------------------------------------- - - //-------------------------------------------------- + class DefineVariableTypeEvent : public PajeEvent + { + public: + type_t type; + DefineVariableTypeEvent(type_t type); + void print() override; + }; + //-------------------------------------------------- + + class DefineStateTypeEvent : public PajeEvent { + type_t type; + public: + DefineStateTypeEvent(type_t type); + void print() override; + }; + class DefineEventTypeEvent : public PajeEvent { type_t type; - public: + public: DefineEventTypeEvent(type_t type); void print() override; };