xflow 0.1.1

XFlow implementation
Documentation
{
  "id": "xflow_call_xflow",
  "name": "xflow_call_xflow",
  "version": 1,
  "requirements": [
    {
      "xtype": "flow",
      "version": 1
    },
    {
      "xtype": "flox",
      "version": 1
    },
    {
      "xtype": "callxflow",
      "version": 1
    }
  ],
  "variables" : {
    "input" : [
      {
        "name"  : "CounterValue",
        "vtype"  : "number",
        "value" : "0"
      }
    ],
    "output" : [
      {
        "name" : "CounterValue",
        "vtype" : "number"
      }
    ],
    "local" : [
    ]
  },
  "nodes": [
    {
      "id": 1,
      "nodetype": "flow",
      "action": "start",
      "label" : "Start",
      "parameters": {}
    },
    {
      "id": 2,
      "nodetype": "callxflow",
      "action": "call",
      "label" : "Call XFlow",
      "parameters": {
        "xflowid": "add_1",
        "inputmatch" : [
          ["CounterValue", "CounterValue"]
        ],
        "outputmatch" : [
          ["CounterValue", "CounterValue"]
        ]
      }
    },
    {
      "id": 3,
      "nodetype": "flow",
      "action": "end",
      "label" : "End",
      "parameters": {}
    }
  ],
  "edges": [
    [ 1, 2 ],
    [ 2, 3 ]
  ],
  "branches" : [
  ]
}