Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change the way the objects are created in ApplicationHandler: they are
[simgrid.git] / examples / basic / Forwarder.java
index 57250d0..4a9b2b1 100644 (file)
@@ -13,7 +13,9 @@ import org.simgrid.msg.Process;
 
 
 public class Forwarder extends Process {
-    
+       public Forwarder(Host host, String name, String[]args) {
+               super(host,name,args);
+       }    
    public void main(String[] args) throws MsgException {
       if (args.length < 3) {    
         Msg.info("Forwarder needs 3 arguments (input mailbox, first output mailbox, last one)");