X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/102079f52888bf091ae08562bf7db74aedea494e..7f90173083cea6c05e9a2418bc11c47750d006d8:/include/simgrid/kernel/routing/NetPoint.hpp diff --git a/include/simgrid/kernel/routing/NetPoint.hpp b/include/simgrid/kernel/routing/NetPoint.hpp index cfcd311369..d413928519 100644 --- a/include/simgrid/kernel/routing/NetPoint.hpp +++ b/include/simgrid/kernel/routing/NetPoint.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-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. */ @@ -13,6 +13,9 @@ #include namespace simgrid { + +extern template class XBT_PUBLIC xbt::Extendable; + namespace kernel { namespace routing { @@ -21,26 +24,25 @@ 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 }; - NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl* netzone_p); + NetPoint(const std::string& name, NetPoint::Type component_type, NetZoneImpl* netzone_p); ~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 */ NetZoneImpl* get_englobing_zone() { return englobing_zone_; } - bool is_netzone() { return component_type_ == Type::NetZone; } - bool is_host() { return component_type_ == Type::Host; } - bool is_router() { return component_type_ == Type::Router; } + bool is_netzone() const { return component_type_ == Type::NetZone; } + bool is_host() const { return component_type_ == Type::Host; } + bool is_router() const { return component_type_ == Type::Router; } - static simgrid::xbt::signal onCreation; + static xbt::signal on_creation; bool operator<(const NetPoint& rhs) const { return name_ < rhs.name_; } @@ -54,6 +56,6 @@ private: } // namespace kernel } // namespace simgrid -XBT_PUBLIC sg_netpoint_t sg_netpoint_by_name_or_null(const char* name); +XBT_PUBLIC simgrid::kernel::routing::NetPoint* sg_netpoint_by_name_or_null(const char* name); #endif /* KERNEL_ROUTING_NETPOINT_HPP_ */