Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use signals for instr::EntityValue display
[simgrid.git] / src / instr / instr_paje_values.cpp
index b49b3fe..5f2bcd4 100644 (file)
@@ -1,10 +1,9 @@
-/* Copyright (c) 2012-2017. The SimGrid Team.
+/* Copyright (c) 2012-2020. 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. */
 
-#include <xbt/ex.hpp>
 #include "src/instr/instr_private.hpp"
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_values, instr, "Paje tracing event system (values)");
@@ -12,15 +11,10 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_values, instr, "Paje tracing event s
 namespace simgrid {
 namespace instr {
 
-Value::Value(std::string name, std::string color, Type* father) : name_(name), color_(color), father_(father)
+EntityValue::EntityValue(const std::string& name, const std::string& color, Type* father)
+    : id_(instr_new_paje_id()), name_(name), color_(color), father_(father)
 {
-  this->id_    = std::to_string(instr_new_paje_id());
-};
-
-Value::~Value()
-{
-  XBT_DEBUG("free value %s, child of %s", getCname(), father_->getCname());
-}
-
-}
+  on_creation(*this);
 }
+} // namespace instr
+} // namespace simgrid