Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
give the VM a link to their PM as a simgrid::Host
[simgrid.git] / include / simgrid / Host.hpp
index e1d2999faa3b45f9b2165df51aab59a306c31fcc..d4d211a04b3d35e4fe8b2d42469cb440e35a47af 100644 (file)
 #include <vector>
 
 #include <xbt/base.h>
-#include <xbt/Facetable.hpp>
 #include <xbt/string.hpp>
+#include <xbt/Extendable.hpp>
 
 namespace simgrid {
 
-XBT_PUBLIC_CLASS Host : public simgrid::xbt::Facetable<Host> {
+XBT_PUBLIC_CLASS Host :
+       public simgrid::xbt::Extendable<Host> {
 private:
-  simgrid::xbt::string id_;
+  simgrid::xbt::string name_;
 public:
-  Host(std::string const& id);
+  Host(std::string const& name);
   ~Host();
-  simgrid::xbt::string const& id() const { return id_; }
+  simgrid::xbt::string const& getName() const { return name_; }
   static Host* by_name_or_null(const char* name);
   static Host* by_name_or_create(const char* name);
 };