X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0d7a222297c1d39c43cdb2f09ea1d5ddd03c7aa0..6d8b8ade25d24e33e57eb02b443f567a0733c664:/src/surf/host_interface.hpp?ds=sidebyside diff --git a/src/surf/host_interface.hpp b/src/surf/host_interface.hpp index ee5aee369d..c6c144d231 100644 --- a/src/surf/host_interface.hpp +++ b/src/surf/host_interface.hpp @@ -277,41 +277,6 @@ private: s_vm_params_t p_params; }; -/********** - * Action * - **********/ - -/** @ingroup SURF_host_interface - * @brief SURF host action interface class - */ -class HostAction : public Action { -public: - static simgrid::surf::signal onStateChange; - - /** - * @brief HostAction constructor - * - * @param model The HostModel associated to this HostAction - * @param cost The cost of this HostAction in [TODO] - * @param failed [description] - */ - HostAction(simgrid::surf::Model *model, double cost, bool failed) - : Action(model, cost, failed) {} - - /** - * @brief HostAction constructor - * - * @param model The HostModel associated to this HostAction - * @param cost The cost of this HostAction in [TODO] - * @param failed [description] - * @param var The lmm variable associated to this StorageAction if it is part of a LMM component - */ - HostAction(simgrid::surf::Model *model, double cost, bool failed, lmm_variable_t var) - : Action(model, cost, failed, var) {} - - void setState(e_surf_action_state_t state); -}; - } }