diff options
author | David Robillard <d@drobilla.net> | 2012-05-02 06:24:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-02 06:24:22 +0000 |
commit | fe353cce9665b33a7372ed2d1683b3c2748625f7 (patch) | |
tree | 81287558b014309820e9df64033edc0b29d23b4f /ingen | |
parent | 1c736a348c59d98e4022fb02b49a8b4c93baa3d2 (diff) | |
download | ingen-fe353cce9665b33a7372ed2d1683b3c2748625f7.tar.gz ingen-fe353cce9665b33a7372ed2d1683b3c2748625f7.tar.bz2 ingen-fe353cce9665b33a7372ed2d1683b3c2748625f7.zip |
Preliminary socket control interface, and ingen_cmd command line interface which uses it.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4311 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/shared/AtomReader.hpp | 2 | ||||
-rw-r--r-- | ingen/shared/URIs.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ingen/shared/AtomReader.hpp b/ingen/shared/AtomReader.hpp index f57dffa7..ef80a4b1 100644 --- a/ingen/shared/AtomReader.hpp +++ b/ingen/shared/AtomReader.hpp @@ -41,7 +41,7 @@ public: void write(const LV2_Atom* msg); private: - void get_uri(const LV2_Atom* in, Raul::Atom& out); + void get_atom(const LV2_Atom* in, Raul::Atom& out); void get_props(const LV2_Atom_Object* obj, Ingen::Resource::Properties& props); diff --git a/ingen/shared/URIs.hpp b/ingen/shared/URIs.hpp index f59f5c38..9ebdbf27 100644 --- a/ingen/shared/URIs.hpp +++ b/ingen/shared/URIs.hpp @@ -78,6 +78,7 @@ public: const Quark ingen_node; const Quark ingen_polyphonic; const Quark ingen_polyphony; + const Quark ingen_prototype; const Quark ingen_sampleRate; const Quark ingen_selected; const Quark ingen_tail; @@ -121,7 +122,6 @@ public: const Quark patch_remove; const Quark patch_request; const Quark patch_subject; - const Quark rdf_instanceOf; const Quark rdf_type; const Quark rdfs_seeAlso; const Quark wildcard; |