summaryrefslogtreecommitdiffstats
path: root/embedding/csharp/uSCXMLEmbedding/Extensions/CustomIOProc.cs
blob: 0480a34a39e502d5d1602a3f479bbded87a1bb4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using org.uscxml;

namespace embedding
{
    class CustomIOProc : IOProcessor
    {
        public override IOProcessor create(Interpreter interpreter)
        {
            return new CustomIOProc();
        }

        public override Data getDataModelVariables()
        {
            Data data = new Data();
            return data;
        }

        public override StringList getNames()
        {
            StringList names = new StringList();
            names.add("simple");
            return names;
        }

        public override void send(SendRequest req)
        {
        }
    }
}