summaryrefslogtreecommitdiff
path: root/cpp/bindings/qmf/python/python.i
blob: 4ead28ab8931e6d7df09da8060387264e8a9db40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%module qmfengine

// These are probably wrong.. just to get it to compile for now.
%typemap (in) void *
{
    $1 = (void *) $input;
}

%typemap (out) void *
{
    $result = (PyObject *) $1;
}


%include "../qmfengine.i"