diff options
author | David Robillard <d@drobilla.net> | 2011-05-24 22:21:20 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-24 22:21:20 +0000 |
commit | 881eac58c2f9bf1fcb18ef7dcda7ab025e327871 (patch) | |
tree | ef6e61d1547afab07dfb67bd0a7d32b33a4a4e89 /src/client/PatchModel.hpp | |
parent | c85f3ab4c7d4c1e793519a400f10fc8499459d80 (diff) | |
download | ingen-881eac58c2f9bf1fcb18ef7dcda7ab025e327871.tar.gz ingen-881eac58c2f9bf1fcb18ef7dcda7ab025e327871.tar.bz2 ingen-881eac58c2f9bf1fcb18ef7dcda7ab025e327871.zip |
Tidy up headers.
Remove dependency on OSCEngineSender and HTTPEngineSender from GUI code.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3317 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/PatchModel.hpp')
-rw-r--r-- | src/client/PatchModel.hpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/client/PatchModel.hpp b/src/client/PatchModel.hpp index dbd54c03..1b9e4a48 100644 --- a/src/client/PatchModel.hpp +++ b/src/client/PatchModel.hpp @@ -18,13 +18,11 @@ #ifndef INGEN_CLIENT_PATCHMODEL_HPP #define INGEN_CLIENT_PATCHMODEL_HPP -#include <cassert> #include "raul/SharedPtr.hpp" + #include "ingen/Patch.hpp" #include "NodeModel.hpp" -#include "ConnectionModel.hpp" - namespace Ingen { class Port; @@ -32,6 +30,7 @@ class Port; namespace Client { class ClientStore; +class ConnectionModel; /** Client's model of a patch. * @@ -47,10 +46,8 @@ public: SharedPtr<ConnectionModel> get_connection(const Ingen::Port* src_port, const Ingen::Port* dst_port); - //uint32_t poly() const { return _poly; } bool enabled() const; bool polyphonic() const; - uint32_t internal_poly() const; /** "editable" = arranging,connecting,adding,deleting,etc |