Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
allow to declare an actor with parameter without going for a full class object
[simgrid.git] / include / simgrid / s4u / Actor.hpp
index 5517dc6..d1121ea 100644 (file)
@@ -175,6 +175,12 @@ public:
    */
   static ActorPtr createActor(const char* name, s4u::Host* host, std::function<void()> code);
 
+  static ActorPtr createActor(const char* name, s4u::Host* host, std::function<void(std::vector<std::string>)> code,
+                              std::vector<std::string> args)
+  {
+    return createActor(name, host, [code](std::vector<std::string> args) { code(args); }, args);
+  }
+
   /** Create an actor using code
    *
    *  Using this constructor, move-only type can be used. The consequence is