diff options
author | David Robillard <d@drobilla.net> | 2011-02-17 10:30:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-17 10:30:08 +0000 |
commit | e668b8c846175f90cf22b456c5e5a4cc85410da4 (patch) | |
tree | 613d2e37d4ef359d2f572bfc4bfd43e6acff43c7 /src/module | |
parent | 4c6269aeaf39f1a5c7473c22ff0417d50decfdc3 (diff) | |
download | ingen-e668b8c846175f90cf22b456c5e5a4cc85410da4.tar.gz ingen-e668b8c846175f90cf22b456c5e5a4cc85410da4.tar.bz2 ingen-e668b8c846175f90cf22b456c5e5a4cc85410da4.zip |
Jack session support for ingen.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2978 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/module')
-rw-r--r-- | src/module/World.cpp | 20 | ||||
-rw-r--r-- | src/module/World.hpp | 5 |
2 files changed, 25 insertions, 0 deletions
diff --git a/src/module/World.cpp b/src/module/World.cpp index 4cdb9272..d8721f5f 100644 --- a/src/module/World.cpp +++ b/src/module/World.cpp @@ -176,6 +176,9 @@ struct WorldImpl : public boost::noncopyable { #ifdef HAVE_SLV2 SLV2World slv2_world; #endif +#ifdef INGEN_JACK_SESSION + std::string jack_uuid; +#endif }; @@ -281,6 +284,23 @@ World::add_interface_factory(const std::string& scheme, InterfaceFactory factory } +#ifdef INGEN_JACK_SESSION + +void +World::set_jack_uuid(const std::string& uuid) +{ + _impl->jack_uuid = uuid; +} + + +std::string +World::jack_uuid() +{ + return _impl->jack_uuid; +} + +#endif // INGEN_JACK_SESSION + } // namespace Shared } // namespace Ingen diff --git a/src/module/World.hpp b/src/module/World.hpp index 1345f3da..a2eb5d40 100644 --- a/src/module/World.hpp +++ b/src/module/World.hpp @@ -106,6 +106,11 @@ public: #ifdef HAVE_SLV2 virtual SLV2World slv2_world(); #endif + +#ifdef INGEN_JACK_SESSION + virtual void set_jack_uuid(const std::string& uuid); + virtual std::string jack_uuid(); +#endif }; |