diff options
author | David Robillard <d@drobilla.net> | 2015-02-24 20:07:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-02-24 20:07:29 +0000 |
commit | f69c75e637cc3c789a675d1811a2f632732bafc0 (patch) | |
tree | b82b69f45d6c92ae3c7000cc465ee18bfa0bbb15 /src/bindings/test_ingen.py | |
parent | 9d7c1e971d51561c4bb28fa1064503e5f266908f (diff) | |
download | ingen-f69c75e637cc3c789a675d1811a2f632732bafc0.tar.gz ingen-f69c75e637cc3c789a675d1811a2f632732bafc0.tar.bz2 ingen-f69c75e637cc3c789a675d1811a2f632732bafc0.zip |
Remove crusty old internal bindings.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5608 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/bindings/test_ingen.py')
-rwxr-xr-x | src/bindings/test_ingen.py | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/bindings/test_ingen.py b/src/bindings/test_ingen.py deleted file mode 100755 index da90b988..00000000 --- a/src/bindings/test_ingen.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env python - -import ingen -import time - -world = ingen.World() - -class PythonClient(ingen.Client): - def error(self, msg): - print "*** Received error:", msg - - def bundle_begin(self): - print "*** Receiving Bundle {" - - def bundle_end(self): - print "*** }" - - def put(self, path, properties): - print "*** Received Object:", path - -c = PythonClient() -c.enable() - -e = world.engine -e.activate() - -c.subscribe(e) - -e.create_port("/dynamic_port", "http://lv2plug.in/ns/lv2core#AudioPort", False) - -while True: - world.iteration() - time.sleep(0.1) - |