X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/63225b9520042ef129adb975132fe68ec5710988..7f90173083cea6c05e9a2418bc11c47750d006d8:/include/simgrid/kernel/routing/NetPoint.hpp?ds=sidebyside diff --git a/include/simgrid/kernel/routing/NetPoint.hpp b/include/simgrid/kernel/routing/NetPoint.hpp index bddc55681f..d413928519 100644 --- a/include/simgrid/kernel/routing/NetPoint.hpp +++ b/include/simgrid/kernel/routing/NetPoint.hpp @@ -24,8 +24,7 @@ namespace routing { * * @details This represents a position in the network. One can send information between two netpoints */ -class NetPoint : public simgrid::xbt::Extendable { - +class NetPoint : public xbt::Extendable { public: enum class Type { Host, Router, NetZone }; @@ -33,7 +32,7 @@ public: ~NetPoint() = default; // Our rank in the vertices_ array of the netzone that contains us. - unsigned int id() { return id_; } + unsigned int id() const { return id_; } const std::string& get_name() const { return name_; } const char* get_cname() const { return name_.c_str(); } /** @brief the NetZone in which this NetPoint is included */ @@ -43,7 +42,7 @@ public: bool is_host() const { return component_type_ == Type::Host; } bool is_router() const { return component_type_ == Type::Router; } - static simgrid::xbt::signal on_creation; + static xbt::signal on_creation; bool operator<(const NetPoint& rhs) const { return name_ < rhs.name_; }