X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ea173e2eff9a6a37ad1934872fd743778c6fabbd..51c23076e2b42ff07dc167dea1cb0e3a4ab3cf68:/src/instr/instr_paje_events.hpp diff --git a/src/instr/instr_paje_events.hpp b/src/instr/instr_paje_events.hpp index bf82373dc2..87ed4341cd 100644 --- a/src/instr/instr_paje_events.hpp +++ b/src/instr/instr_paje_events.hpp @@ -40,7 +40,7 @@ class PajeEvent { Container* container_; Type* type_; protected: - Container* getContainer() { return container_; } + Container* get_container() { return container_; } public: double timestamp_; e_event_type eventType_; @@ -49,15 +49,15 @@ public: PajeEvent(Container* container, Type* type, double timestamp, e_event_type eventType); virtual ~PajeEvent() = default; virtual void print(); - void insertIntoBuffer(); + void insert_into_buffer(); }; class VariableEvent : public PajeEvent { - double value; + double value_; public: VariableEvent(double timestamp, Container* container, Type* type, e_event_type event_type, double value) - : PajeEvent::PajeEvent(container, type, timestamp, event_type), value(value) + : PajeEvent::PajeEvent(container, type, timestamp, event_type), value_(value) { } void print() override;