diff options
author | David Robillard <d@drobilla.net> | 2012-08-12 15:56:21 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-12 15:56:21 +0000 |
commit | 21b1e2e485d9fa954ca742965d000f3273fcb862 (patch) | |
tree | 8f316c5adbf6d387d64ee895b862dae21614524a /src/server/PatchImpl.hpp | |
parent | 65a81eec8943dc0504b8b8755f9866ee4993372c (diff) | |
download | ingen-21b1e2e485d9fa954ca742965d000f3273fcb862.tar.gz ingen-21b1e2e485d9fa954ca742965d000f3273fcb862.tar.bz2 ingen-21b1e2e485d9fa954ca742965d000f3273fcb862.zip |
Stricter symbol construction and conversion.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4670 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/PatchImpl.hpp')
-rw-r--r-- | src/server/PatchImpl.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/server/PatchImpl.hpp b/src/server/PatchImpl.hpp index 1204eeee..ac8a80ca 100644 --- a/src/server/PatchImpl.hpp +++ b/src/server/PatchImpl.hpp @@ -106,13 +106,13 @@ public: uint32_t num_ports_non_rt() const; - PortImpl* create_port(BufferFactory& bufs, - const std::string& name, - PortType type, - LV2_URID buffer_type, - uint32_t buffer_size, - bool is_output, - bool polyphonic); + PortImpl* create_port(BufferFactory& bufs, + const Raul::Symbol& symbol, + PortType type, + LV2_URID buffer_type, + uint32_t buffer_size, + bool is_output, + bool polyphonic); typedef Raul::List<PortImpl*> Ports; @@ -126,7 +126,7 @@ public: _outputs.push_back(port); } - Ports::Node* remove_port(const std::string& name); + Ports::Node* remove_port(const Raul::Symbol& symbol); void clear_ports(); void add_edge(SharedPtr<EdgeImpl> c); |