X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e95d2dda61913a92ff3a9d1b7c368ba6e1443b30..9b60e270c5fe98fb6c528164aa9c6e4e6045f7e0:/include/simgrid/kernel/routing/NetPoint.hpp diff --git a/include/simgrid/kernel/routing/NetPoint.hpp b/include/simgrid/kernel/routing/NetPoint.hpp index 847c4e49a6..046cd45382 100644 --- a/include/simgrid/kernel/routing/NetPoint.hpp +++ b/include/simgrid/kernel/routing/NetPoint.hpp @@ -26,34 +26,34 @@ class NetPoint : public simgrid::xbt::Extendable { public: enum class Type { Host, Router, NetZone }; - NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl* netzone_p); + NetPoint(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_; } - const std::string& getName() const { return name_; } - const char* getCname() const { return name_.c_str(); } + 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* netzone() { return netzone_; } + NetZoneImpl* get_englobing_zone() { return englobing_zone_; } - bool isNetZone() { return componentType_ == Type::NetZone; } - bool isHost() { return componentType_ == Type::Host; } - bool isRouter() { return componentType_ == Type::Router; } + bool is_netzone() { return component_type_ == Type::NetZone; } + bool is_host() { return component_type_ == Type::Host; } + bool is_router() { return component_type_ == Type::Router; } - static simgrid::xbt::signal onCreation; + static simgrid::xbt::signal on_creation; bool operator<(const NetPoint& rhs) const { return name_ < rhs.name_; } private: unsigned int id_; std::string name_; - NetPoint::Type componentType_; - NetZoneImpl* netzone_; + NetPoint::Type component_type_; + NetZoneImpl* englobing_zone_; }; } // namespace routing } // 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_ */