Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sonar: remove redundent declarations
[simgrid.git] / include / simgrid / forward.h
index 9a996b94ccefe524a112ce6d8868f5ff38cb7a3d..80a441e5ceaf34a83aa6888aaeac9809a9686b3c 100644 (file)
@@ -37,9 +37,16 @@ namespace activity {
 
   class MailboxImpl;
 }
-
+namespace lmm {
+class Element;
+class Variable;
+class Constraint;
+class ConstraintLight;
+class System;
+}
 namespace routing {
   class NetPoint;
+  class NetZoneImpl;
 }
 }
 namespace simix {
@@ -81,6 +88,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;