Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Let's call sg::surf::host a HostImplem
[simgrid.git] / src / surf / virtual_machine.hpp
index 99f1e39..0ec2101 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <xbt/base.h>
 
-#include "host_interface.hpp"
+#include "HostImplem.hpp"
 
 #ifndef VM_INTERFACE_HPP_
 #define VM_INTERFACE_HPP_
@@ -51,7 +51,7 @@ extern XBT_PRIVATE simgrid::xbt::signal<void(simgrid::surf::VirtualMachine*)> VM
  * @brief SURF VM interface class
  * @details A VM represent a virtual machine
  */
-class VirtualMachine : public Host {
+class VirtualMachine : public HostImplem {
 public:
   /**
    * @brief Constructor
@@ -59,11 +59,10 @@ public:
    * @param model VMModel associated to this VM
    * @param name The name of the VM
    * @param props Dictionary of properties associated to this VM
-   * @param netElm The RoutingEdge associated to this VM
-   * @param cpu The Cpu associated to this VM
+   * @param host The host
    */
   VirtualMachine(simgrid::surf::HostModel *model, const char *name, xbt_dict_t props,
-                       simgrid::Host *host);
+            simgrid::s4u::Host *host);
 
   /** @brief Destructor */
   ~VirtualMachine();
@@ -91,7 +90,7 @@ public:
 
   /* The vm object of the lower layer */
   CpuAction *p_action;
-  simgrid::Host *p_hostPM;
+  simgrid::s4u::Host *p_hostPM;
 
   void turnOn() override;
   void turnOff() override;