X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c8997e63383c66e43ffde29d356fdddb65d65d81..2652a7d2c9ebb969683d8fd94b11c96489327912:/src/surf/virtual_machine.hpp diff --git a/src/surf/virtual_machine.hpp b/src/surf/virtual_machine.hpp index 0ec2101dda..5c6872e1b2 100644 --- a/src/surf/virtual_machine.hpp +++ b/src/surf/virtual_machine.hpp @@ -6,7 +6,7 @@ #include -#include "HostImplem.hpp" +#include "src/surf/HostImpl.hpp" #ifndef VM_INTERFACE_HPP_ #define VM_INTERFACE_HPP_ @@ -51,7 +51,7 @@ extern XBT_PRIVATE simgrid::xbt::signal VM * @brief SURF VM interface class * @details A VM represent a virtual machine */ -class VirtualMachine : public HostImplem { +class VirtualMachine : public HostImpl { public: /** * @brief Constructor @@ -61,8 +61,7 @@ public: * @param props Dictionary of properties associated to this VM * @param host The host */ - VirtualMachine(simgrid::surf::HostModel *model, const char *name, xbt_dict_t props, - simgrid::s4u::Host *host); + VirtualMachine(simgrid::surf::HostModel *model, const char *name, xbt_dict_t props, simgrid::s4u::Host *host); /** @brief Destructor */ ~VirtualMachine(); @@ -101,7 +100,6 @@ public: protected: e_surf_vm_state_t p_vm_state = SURF_VM_STATE_CREATED; - public: boost::intrusive::list_member_hook<> vm_hook; }; @@ -123,7 +121,6 @@ public: * * @param name The name of the new VM * @param host_PM The real machine hosting the VM - * */ virtual VirtualMachine *createVM(const char *name, sg_host_t host_PM)=0; void adjustWeightOfDummyCpuActions() {};