X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2807fde4fd1f59c230d69a934634c5dfb77905f2..72455be6eaf30872979c5769b1b00b422637fdc7:/include/simgrid/forward.h diff --git a/include/simgrid/forward.h b/include/simgrid/forward.h index 9a996b94cc..c45fc622e6 100644 --- a/include/simgrid/forward.h +++ b/include/simgrid/forward.h @@ -37,7 +37,13 @@ namespace activity { class MailboxImpl; } - +namespace lmm { +class Element; +class Variable; +class Constraint; +class ConstraintLight; +class System; +} namespace routing { class NetPoint; } @@ -81,6 +87,13 @@ typedef simgrid::simix::MutexImpl* smx_mutex_t; typedef simgrid::kernel::activity::MailboxImpl* smx_mailbox_t; typedef simgrid::surf::StorageImpl* surf_storage_t; +typedef simgrid::kernel::lmm::Element* lmm_element_t; +typedef const simgrid::kernel::lmm::Element* const_lmm_element_t; +typedef simgrid::kernel::lmm::Variable* lmm_variable_t; +typedef simgrid::kernel::lmm::Constraint* lmm_constraint_t; +typedef simgrid::kernel::lmm::ConstraintLight* lmm_constraint_light_t; +typedef simgrid::kernel::lmm::System* lmm_system_t; + #else typedef struct s4u_Actor s4u_Actor;