aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-01-22 04:07:53 +0000
committerDavid Robillard <d@drobilla.net>2007-01-22 04:07:53 +0000
commitb19a6d45819da3094bdf76545d1b54ae39036313 (patch)
tree619d1c396bac71e5b2a9f5e8c74fdaf86c66593e /data
parent223672dd2445a6fd5f1a984823c1e926da316f41 (diff)
downloadmachina-b19a6d45819da3094bdf76545d1b54ae39036313.tar.gz
machina-b19a6d45819da3094bdf76545d1b54ae39036313.tar.bz2
machina-b19a6d45819da3094bdf76545d1b54ae39036313.zip
Added atomic int/pointer classes to Raul.
Added multi-writer queue to Raul. Renamed Queue SRSWQueue (single-reader single-writer). Updated patchage/ingen for Raul changes. git-svn-id: http://svn.drobilla.net/lad/machina@264 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'data')
-rw-r--r--data/Makefile.am1
-rw-r--r--data/test.ttl9
2 files changed, 10 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644
index 0000000..32bf715
--- /dev/null
+++ b/data/Makefile.am
@@ -0,0 +1 @@
+EXTRA_DIST = test.ttl
diff --git a/data/test.ttl b/data/test.ttl
new file mode 100644
index 0000000..1a334b1
--- /dev/null
+++ b/data/test.ttl
@@ -0,0 +1,9 @@
+@prefix : <http://codeson.net/ns/machina#> .
+
+<#test>
+ a Machine;
+ node [
+ a Node;
+ midiNote 60;
+ duration 100;
+ ] .