samples/dingens.idl
author Volker Birk <vb@pep.foundation>
Sat, 10 Dec 2016 10:11:31 +0100
changeset 7 f81a4471bc28
parent 0 76005e62091d
permissions -rw-r--r--
beginning with Python 3 compat
module Bla {
    struct Blub {
        long a;
        string b;
    };

    interface Blubber {
        Blub getBlub();
    };

    typedef My::Complicated::Reachable::Thing Thing;

    interface Irgendwas {
        struct Bla {

        };

        readonly attribute Thing b;
    };
};