From d82dcd232f201b531a0be165ee44aede1bc8a1df Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 19 Sep 2006 18:11:19 +0000 Subject: Alsa MIDI fixes. git-svn-id: http://svn.drobilla.net/lad/ingen@144 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/Store.h | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/libs/client/Store.h') diff --git a/src/libs/client/Store.h b/src/libs/client/Store.h index a2083ba2..6a8700f9 100644 --- a/src/libs/client/Store.h +++ b/src/libs/client/Store.h @@ -54,9 +54,10 @@ public: void clear(); - size_t num_objects() { return m_objects.size(); } + size_t num_object() { return _objects.size(); } - const map >& plugins() const { return m_plugins; } + const map >& plugins() const { return _plugins; } + const map >& objects() const { return _objects; } sigc::signal > new_object_sig; private: @@ -98,23 +99,23 @@ private: CountedPtr _emitter; typedef map > ObjectMap; - ObjectMap m_objects; ///< Keyed by Ingen path + ObjectMap _objects; ///< Keyed by Ingen path - map > m_plugins; ///< Keyed by URI + map > _plugins; ///< Keyed by URI /** Objects we've received, but depend on the existance of another unknown object. * Keyed by the path of the depended-on object (for tolerance of orderless comms) */ - map > > m_orphans; + map > > _orphans; /** Same idea, except with plugins instead of parents. * It's unfortunate everything doesn't just have a URI and this was the same.. ahem.. */ - map > > m_plugin_orphans; + map > > _plugin_orphans; /** Not orphans OF metadata like the above, but orphans which are metadata */ - map > > m_metadata_orphans; + map > > _metadata_orphans; /** Ditto */ - list > m_connection_orphans; + list > _connection_orphans; }; -- cgit v1.2.1