X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..ea74f5d95928a521a588737e81f1de94eef25d19:/src/instr/instr_paje_values.hpp diff --git a/src/instr/instr_paje_values.hpp b/src/instr/instr_paje_values.hpp index e78ac6113c..ce7dcc3289 100644 --- a/src/instr/instr_paje_values.hpp +++ b/src/instr/instr_paje_values.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2022. 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. */ @@ -13,18 +13,24 @@ namespace simgrid { namespace instr { class EntityValue { - long long int id_; + long long int id_ = new_paje_id(); std::string name_; std::string color_; - Type* father_; + Type* parent_; + + static xbt::signal on_creation; public: - explicit EntityValue(const std::string& name, const std::string& color, Type* father); - const char* get_cname() { return name_.c_str(); } - long long int get_id() { return id_; } - void print(); + static void on_creation_cb(const std::function& cb) { on_creation.connect(cb); } + explicit EntityValue(const std::string& name, const std::string& color, Type* parent); + + long long int get_id() const { return id_; } + std::string get_name() const { return name_; } + const char* get_cname() const { return name_.c_str(); } + std::string get_color() const { return color_; } + Type* get_parent() const { return parent_; } }; -} -} +} // namespace instr +} // namespace simgrid #endif